- Tray-Icon zeigt App im System-Tray - Kontextmenü: Fenster zeigen, Minimieren, Beenden - Klick auf Tray-Icon zeigt Fenster - Capabilities für Window-Operationen ergänzt - Icon-Konfiguration in tauri.conf.json Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
522 B
JSON
20 lines
522 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2/capability",
|
|
"identifier": "default",
|
|
"description": "Claude Desktop Standardberechtigungen",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:allow-show",
|
|
"core:window:allow-hide",
|
|
"core:window:allow-set-focus",
|
|
"core:window:allow-close",
|
|
"core:menu:default",
|
|
"core:tray:default",
|
|
"shell:allow-open",
|
|
"shell:allow-execute",
|
|
"shell:allow-spawn",
|
|
"shell:allow-stdin-write",
|
|
"shell:allow-kill"
|
|
]
|
|
}
|