Problem or Use Case
I'd like to be able to quickly check my Claude usage status without clicking the menu bar icon.
Currently, I need to:
- Move my cursor to the menu bar
- Click the Claude Usage Tracker icon
- View the popover
This interrupts my workflow, especially when I'm coding or writing and want to quickly glance at my usage before sending a message to Claude. A global keyboard shortcut would allow instant access without leaving my current context.
Proposed Solution
The app could add user-customizable global keyboard shortcuts with the following features:
Default Shortcuts (customizable by user):
-
Toggle Popover (default: ⌥⌘C / Option+Cmd+C)
- Show/hide the usage popover from anywhere in macOS
-
Quick Refresh (default: ⌥⌘R / Option+Cmd+R)
- Force refresh usage data without opening the popover
-
Open Settings (default: ⌥⌘, / Option+Cmd+,)
- Quick access to settings window
Customization UI:
- Add a "Shortcuts" tab in Settings where users can:
- Record their own preferred key combinations
- Reset to defaults
- Enable/disable individual shortcuts
- Toggle all global shortcuts on/off
Implementation could use:
MASShortcut library (provides shortcut recording UI) or native NSEvent.addGlobalMonitorForEvents
- Store custom shortcuts in UserDefaults
Alternatives Considered
-
Using macOS Shortcuts app - Works for launching the app, but can't toggle the popover or trigger specific actions within the app.
-
Third-party tools like Raycast/Alfred - Adds external dependency and complexity for users who don't already use these tools.
-
AppleScript support - Could work but requires more setup from users and isn't as seamless as native shortcuts.
Additional Context
Reference implementations:
This feature would significantly improve the UX for power users who prefer keyboard navigation. The shortcut preferences could be stored in UserDefaults alongside other settings.
Problem or Use Case
I'd like to be able to quickly check my Claude usage status without clicking the menu bar icon.
Currently, I need to:
This interrupts my workflow, especially when I'm coding or writing and want to quickly glance at my usage before sending a message to Claude. A global keyboard shortcut would allow instant access without leaving my current context.
Proposed Solution
The app could add user-customizable global keyboard shortcuts with the following features:
Default Shortcuts (customizable by user):
Toggle Popover (default: ⌥⌘C / Option+Cmd+C)
Quick Refresh (default: ⌥⌘R / Option+Cmd+R)
Open Settings (default: ⌥⌘, / Option+Cmd+,)
Customization UI:
Implementation could use:
MASShortcutlibrary (provides shortcut recording UI) or nativeNSEvent.addGlobalMonitorForEventsAlternatives Considered
Using macOS Shortcuts app - Works for launching the app, but can't toggle the popover or trigger specific actions within the app.
Third-party tools like Raycast/Alfred - Adds external dependency and complexity for users who don't already use these tools.
AppleScript support - Could work but requires more setup from users and isn't as seamless as native shortcuts.
Additional Context
Reference implementations:
This feature would significantly improve the UX for power users who prefer keyboard navigation. The shortcut preferences could be stored in UserDefaults alongside other settings.