Global shortcuts reference
Core actions
Window positioning
Detailed shortcuts
Show/center window
Shortcut:Cmd/Ctrl+Shift+Space
Brings Cluely to the front and centers it on your current screen.
This is the primary shortcut for accessing Cluely. It works from any application and brings the window to focus.
Toggle visibility
Shortcut:Cmd/Ctrl+B
Quickly show or hide the Cluely window without changing its position.
On macOS, this shortcut temporarily adjusts the window’s always-on-top level to ensure it appears above other windows.
Screenshot capture
Shortcut:Cmd/Ctrl+H
Captures a screenshot and automatically processes it with AI.
- Hides Cluely window
- Waits 100ms for window to hide
- Captures entire screen
- Shows window again
- Automatically processes screenshot with AI
Process screenshots
Shortcut:Cmd/Ctrl+Enter
Manually triggers processing of queued screenshots.
- You’ve captured multiple screenshots and want to process them together
- You’ve added context/questions to screenshots before processing
- You’re in debug mode and want to process additional screenshots
Reset and clear
Shortcut:Cmd/Ctrl+R
Resets Cluely to its initial state.
- All queued screenshots (deleted from disk)
- Debug screenshots (deleted from disk)
- Ongoing API requests (cancelled)
- View state (back to queue)
- React Query cache (invalidated)
Use this shortcut to start fresh when working on a new problem or if you want to clear context.
Window movement shortcuts
Move left
Shortcut:Cmd/Ctrl+Left
Moves the Cluely window to the left side of your screen.
Move right
Shortcut:Cmd/Ctrl+Right
Moves the window to the right side.
Move up
Shortcut:Cmd/Ctrl+Up
Moves the window up on your screen.
Move down
Shortcut:Cmd/Ctrl+Down
Moves the window down.
IPC shortcuts
These shortcuts are available through the IPC API for use in the renderer process:Shortcut registration
All global shortcuts are registered at app startup:Shortcuts are automatically unregistered when the app quits to avoid conflicts with other applications.
Platform differences
macOS
- Uses
Commandkey for shortcuts - Includes special always-on-top handling for toggle visibility
- May conflict with system shortcuts (especially
Cmd+H)
Windows/Linux
- Uses
Controlkey for shortcuts - Standard window behavior without special z-order handling
- Generally fewer conflicts with system shortcuts
Customization
Shortcuts are currently hardcoded inelectron/shortcuts.ts. To customize:
- Edit the shortcut registration in
ShortcutsHelper.registerGlobalShortcuts() - Rebuild the application
- Test for conflicts with system shortcuts
Troubleshooting
Shortcuts not working
Shortcuts not working
Possible causes:
- Another app is using the same shortcut
- macOS accessibility permissions not granted
- Electron’s globalShortcut module failed to register
- Check System Preferences → Keyboard → Shortcuts for conflicts
- Grant accessibility permissions to Cluely
- Restart the application
- Check console for registration errors
Cmd+H hides the app instead of taking screenshot
Cmd+H hides the app instead of taking screenshot
Cause: macOS system shortcut conflictSolutions:
- Disable “Hide [App]” in System Preferences → Keyboard → Shortcuts → App Shortcuts
- Or modify Cluely’s screenshot shortcut to use a different key combination
Window doesn't come to front
Window doesn't come to front
Solutions:
- Try using
Cmd/Ctrl+Shift+Spaceinstead ofCmd/Ctrl+B - On macOS, ensure Cluely has accessibility permissions
- Check if another window is set to always-on-top
Quick reference table
| Action | macOS | Windows/Linux | Description |
|---|---|---|---|
| Show window | Cmd+Shift+Space | Ctrl+Shift+Space | Center and show Cluely |
| Toggle visibility | Cmd+B | Ctrl+B | Hide/show window |
| Screenshot | Cmd+H | Ctrl+H | Capture + auto-process |
| Process queue | Cmd+Enter | Ctrl+Enter | Manually process screenshots |
| Reset | Cmd+R | Ctrl+R | Clear queues and reset |
| Move left | Cmd+Left | Ctrl+Left | Reposition window |
| Move right | Cmd+Right | Ctrl+Right | Reposition window |
| Move up | Cmd+Up | Ctrl+Up | Reposition window |
| Move down | Cmd+Down | Ctrl+Down | Reposition window |