global-shortcut-manager

Solid

Register and manage global keyboard shortcuts across desktop platforms

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
48
Issue Health 10%
50
License 10%
100
Description 5%
100

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

Related Skills