Files
Kingdom-Cheat-Deliverance-2/src-tauri/tauri.conf.json
T
Homer 8d3367237a Implement Rust shell: tray, global hotkey, overlay window
Frameless transparent always-on-top window, tray icon with toggle/quit,
persisted global hotkey (default Ctrl+Shift+K) with safe re-registration,
single-instance --toggle IPC as Wayland hotkey fallback, close-to-tray.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 09:12:54 +02:00

45 lines
949 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "KCD2 Overlay",
"version": "0.1.0",
"identifier": "sk.ecoposta.kcd2overlay",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "KCD2 Overlay",
"width": 920,
"height": 640,
"minWidth": 560,
"minHeight": 400,
"decorations": false,
"transparent": true,
"alwaysOnTop": true,
"skipTaskbar": true,
"visible": false,
"center": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}