feat: add global-shortcut plugin and mini timer window commands

This commit is contained in:
Your Name
2026-02-18 02:06:07 +02:00
parent c6cb26553a
commit 99bca0709b
5 changed files with 5940 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
"$schema": "https://schema.tauri.app/config/2",
"identifier": "default",
"description": "Default capabilities for the app",
"windows": ["main"],
"windows": ["main", "mini-timer"],
"permissions": [
"core:default",
"core:window:allow-close",
@@ -25,6 +25,10 @@
"fs:allow-write-text-file",
"notification:allow-is-permission-granted",
"notification:allow-request-permission",
"notification:allow-notify"
"notification:allow-notify",
"global-shortcut:allow-register",
"global-shortcut:allow-unregister",
"global-shortcut:allow-unregister-all",
"global-shortcut:allow-is-registered"
]
}