global-shortcut-manager
SolidRegister and manage global keyboard shortcuts across desktop platforms
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# global-shortcut-manager
Register and manage global keyboard shortcuts that work even when the application is not focused.
## Capabilities
- Register global shortcuts
- Handle modifier combinations
- Manage shortcut conflicts
- Platform-specific key mapping
- Unregister shortcuts
- Check shortcut availability
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"framework": { "enum": ["electron", "tauri", "native"] },
"shortcuts": { "type": "array" }
},
"required": ["projectPath"]
}
```
## Electron Example
```javascript
const { globalShortcut } = require('electron');
function registerShortcuts() {
globalShortcut.register('CommandOrControl+Shift+X', () => {
console.log('Global shortcut triggered');
});
}
app.on('will-quit', () => {
globalShortcut.unregisterAll();
});
```
## Related Skills
- `clipboard-handler`
- `system-services-integration` process
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
clipboard-handler
Cross-platform clipboard operations for text, images, files, and rich content
1,160 Updated today
a5c-ai AI & Automation Solid
keyboard-navigation
Keyboard accessibility, focus management, and shortcuts.
1,160 Updated today
a5c-ai AI & Automation Solid
keychain-credential-manager
Manage credentials in OS keychains across Windows, macOS, and Linux
1,160 Updated today
a5c-ai Web & Frontend Listed
cmux-keyboard-shortcuts
Guide and apply cmux keyboard shortcut customization. Use when the user asks to customize, rebind, unbind, reset, audit, or create shortcut templates for cmux, including tmux-style, Vim-style, terminal-first, browser-heavy, iTerm/Terminal-like, or agent-triage layouts.
20,646 Updated today
manaflow-ai AI & Automation Solid
screen-capture-api
Cross-platform screen and window capture for screenshots and recording
1,160 Updated today
a5c-ai