Claude
Skills
Sign in
Back

global-shortcut-manager

Included with Lifetime
$97 forever

Register and manage global keyboard shortcuts across desktop platforms

Generalkeyboardshortcutshotkeyscross-platformdesktop

What this skill does


# 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

Related in General