claude-desktop/src-tauri/capabilities/default.json
Eddy 87ba8f7bdf
All checks were successful
Build AppImage / build (push) Successful in 8m53s
feat: Global Hotkey (Super+C) + Clipboard-Watch + Desktop-Integration [appimage]
- Global Hotkey: Super+C öffnet Claude-Fenster und fokussiert Input von überall
- Clipboard-Watch: Erkennt Code/URLs/Fehler/Pfade in Zwischenablage, zeigt Vorschlag
- tauri-plugin-global-shortcut + tauri-plugin-dialog integriert
- focus-chat-input Event für Hotkey → Input-Fokus
- clipboard-changed Event für Watch → Chat-Vorschlag

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-21 11:50:56 +02:00

25 lines
732 B
JSON

{
"$schema": "https://schema.tauri.app/config/2/capability",
"identifier": "default",
"description": "Claude Desktop Standardberechtigungen",
"windows": ["main", "presentation"],
"permissions": [
"core:default",
"core:window:allow-show",
"core:window:allow-hide",
"core:window:allow-set-focus",
"core:window:allow-close",
"core:webview:allow-create-webview-window",
"core:menu:default",
"core:tray:default",
"shell:allow-open",
"shell:allow-execute",
"shell:allow-spawn",
"shell:allow-stdin-write",
"shell:allow-kill",
"dialog:allow-open",
"global-shortcut:allow-register",
"global-shortcut:allow-unregister",
"global-shortcut:allow-is-registered"
]
}