Raycast: Why I Use It Instead of Spotlight
Raycast is a launcher that replaces Spotlight, macOS's built-in search bar. But it's not just a "prettier Spotlight." The whole point is turning that app-launch shortcut into a work hub that handles clipboard history, window tiling, text autocomplete, and script execution all in one place. This post walks through what Raycast is, how to set it up the first time, which features to try first, and the gotchas worth knowing in advance.
Spotlight already works — so why switch?
If you use macOS, you've almost certainly hit ⌘Space to bring up Spotlight, searched for an app, and launched it. It's fast and convenient. But that's where it ends. Once the app is open, everything that comes next — pasting back something you just copied, snapping a window to half the screen, typing a phrase you use constantly — lives in a different app, behind a different shortcut.
Raycast starts from one idea: "let's pull all those scattered tasks into the same search bar." You open a single window with a shortcut, type a few characters, and it doesn't just launch apps — it searches your clipboard, tiles windows, runs calculations, and fires extensions. The biggest change is how much less your hands leave the keyboard to go digging through menus with the mouse.
| Task | Spotlight | Raycast |
|---|---|---|
| Launch apps · search files | Yes | Yes |
| Re-paste something copied earlier | No (needs a separate app) | Built in (Clipboard History) |
| Snap windows to half-screen · maximize | No (needs a separate app) | Built in (Window Management) |
| Auto-type frequently used phrases | No | Built in (Snippets) |
| Drive external tools like GitHub · Linear | No | Yes, via extensions (Store) |
How to set it up on first launch
After you install and open Raycast, the first thing you decide is the trigger shortcut. The default is ⌥Space (Option + Space), but a lot of people prefer to hand Raycast the ⌘Space slot that Spotlight occupies. You keep the key your hands already know.
There's one catch, though. macOS assigns ⌘Space to Spotlight by default, so if you leave it as-is, the two collide. The usual order is to first clear or remap the Spotlight shortcut in System Settings, then set Raycast's trigger to ⌘Space in its preferences.
Setup order: ① System Settings → Keyboard → Keyboard Shortcuts → Spotlight → disable (or change) the "Show Spotlight search" shortcut → ② Raycast Settings → General → set Raycast Hotkey to the key you want. Follow this order and the shortcuts won't clash.
Also, some features like window tiling have to move other apps' windows, so macOS asks for Accessibility permission. The first time you run a window-tiling command, a permission prompt appears — grant Raycast access once in System Settings and it works smoothly from then on.
What you can use right after installing
Even without installing a single extension, the out-of-the-box feature set is surprisingly broad. It effectively absorbs several small utilities you'd otherwise install separately. Let's go through them one by one.
Clipboard History — pull back what you copied
Copy something, then copy something else, and the previous item is gone. Clipboard History keeps a record of copied text and images so you can search and re-paste the one you want. Assign it a shortcut and you can pop the history list anywhere to instantly find "that link from earlier."
Window Management — tile windows with the keyboard
Move a window to the left half, right half, or full screen with a single command. Instead of grabbing a window corner with the mouse and dragging, you type a command like "left half" into the search bar or bind it to a shortcut. There are also commands to throw a window onto the next display on a dual-monitor setup.
Snippets — autocomplete phrases you reuse
Register repeated text — an email address, a common greeting, a signature — under a keyword, and the moment you type that keyword it expands into the full phrase. For example, you can make typing ;mail insert your email address. It also supports dynamic snippets that auto-fill the date.
Quicklinks · Calculator · Search
Quicklinks for registering frequently opened URLs or site-specific searches as commands, a Calculator for doing math and converting units · currencies right in the window, and search for finding and opening files and folders — all built in. This is where the feeling of "I start pretty much everything from one search bar" takes hold.
The real difference comes from the Store
What gives Raycast its character is the Store. Community extensions let you drive tools like GitHub, Jira, Linear, Homebrew, color pickers, and translators straight from the search bar. Installing is simple: open "Store" from the search bar, find the extension you want, install it, and its commands immediately join your search results.
For developers, the flow that really lands is something like this: checking your PR list from the search bar without opening a browser to GitHub, or searching and installing a Homebrew package without opening a terminal. Instead of "moving to a tool's window to use the tool," it shifts to "calling the tool from the search bar."
One step further — register your own scripts as commands
If you want to automate repetitive work, Script Commands are powerful. Register a shell or Python script as a Raycast command and you can run it just by typing its name into the search bar. All it takes is adding a block of structured comments (metadata) at the top of the script.
#!/bin/bash
# Raycast metadata
# @raycast.schemaVersion 1
# @raycast.title Copy today's date
# @raycast.mode silent
# Actual action
date "+%Y-%m-%d" | pbcopy
Drop a script saved like this into Raycast's Script Commands folder, and the moment you find and run "Copy today's date" from the search bar, today's date lands on your clipboard. Build commands you run often — build scripts, server logins, opening logs — into a single search-bar line this way.
How far does free go, and what's paid?
Personal use is free, and the free tier covers most of what's described above. Some features like team-wide sync and Raycast AI belong to the paid Pro plan. That said, plan structure, pricing, and the free/paid line all change over time, so for the exact, current details it's safest to check the pricing page on the official site.
Gotchas worth knowing in advance
-
Shortcut conflicts: as covered above, to use
⌘Spaceyou have to clear the Spotlight shortcut first. Otherwise both windows respond at once. - Permission prompts: window tiling and some extensions need Accessibility permission. Without it, those specific commands just silently fail to work, so it's worth granting it once at the start.
- Uneven extension quality: Store extensions are community-built, so their polish and maintenance vary. Sticking to extensions that are popular and have an update history is more reliable.
- Platform: it's most mature on macOS right now. Rather than expecting the same experience elsewhere, keep in mind it's the tool that fits macOS users best.
So who is it for?
If you prefer working from the keyboard over the mouse, and you already run a separate clipboard manager or window-tiling app, Raycast becomes a natural choice for merging them into one. Add extensions and scripts on top, and it goes beyond a simple launcher to become "the entrance to your workflow."
On the other hand, if you only use Spotlight's app launching and need nothing more, there's little reason to switch. Rather than reaching for every feature from day one, I'd suggest binding just two — Clipboard History and Window Management — to shortcuts and living with them for about a week. Even those two alone make it easy to feel your hands leaving the keyboard less.
Sources
- Raycast official site
- Raycast Manual (official docs)
- Raycast Store (extensions)
- Raycast Developer Docs
This post is an overview based on the official docs and Store rather than a long-term hands-on review. Specific features, shortcuts, and pricing may change with updates, so I recommend checking the settings screen and the official documentation alongside it.
Original with full infographics and visual structure: https://jessinvestment.com/raycast-why-i-use-it-instead-of-spotlight/
Top comments (0)