Shortcut to everything.
Use as a drop in replacement for Spotlight which is full of garbage results like web pages in recent versions of Mac.
macOS power users often switch to Raycast or Alfred to use as app launchers as they are more predictable and respect local app priority rather than Spotlight which has been ruined trying to be a universal search usually resulting in poor results not giving you the local app you want to launch.
brew install --cask RaycastThis might request permissions:
open -a RaycastMake Raycast auto-start every login:
osascript -e 'tell application "System Events" to make login item at end with properties {path:"/Applications/Raycast.app", hidden:false}'This can be done manually via the Settings UI too.
By default Raycast claims the Option + Space hotkey to bring it up to not clash with Spotlight.
Change this to replace Spotlight.
Go to Settings -> Keyboard -> Keyboard Shorts -> Spotlight and untick
Show Spotlight search and Show Finder search window.
Then go to Raycast's settings and change the Raycast hotkey to be Cmd + Space.
Raycast uses Spotlight file indexing, so don't disable Spotlight entirely or you will lose file search.
If you really want to disable file search in Raycast, you can disable indexing entirely to save resources:
sudo mdutil -a -i offDisable Raycast in-app upgrades to allow homebrew upgrade to run without conflict with /Applications/Raycast.app.
Use Mac settings which Raycast should respect:
defaults write com.raycast.macos updaterEnabled -bool falseThen restart Raycast to ensure the setting takes effect:
pkill -f Raycast
open -a RaycastSome extensions that might be of interest.
I personally find it easier to Cmd-Tab to my browser or Terminal and run a lot of things there.
- Spotify Player
- ChatGPT
- Google Gemini
- Google Translate
- Cursor
- Claude
- Raindrop.io
- Obsidian
- Remove Paywall
- Iconify
- Base64
- Color Picker
- Manage Homebrew Services
Create scripts to customize Raycast.
Documentation and samples repo.
Dev tools to create code snippets, browse AI prompts, create extension icons and more.