Files
Windows-11-Clipboard-Histor…/src-tauri/tauri.conf.json
Gustavo Carvalho 857439b46e feat: theme settings (#38)
* feat: implement user settings management for theme and opacity preferences

* feat: add user settings management and settings window functionality

* feat: enhance command path resolution for global shortcuts

* feat: expose user settings module and manager in the library

* feat: update capabilities to include settings window support

* feat: update capability description and include settings window support

* feat: add --quiet option to application execution command

* feat: add settings window configuration to Tauri app

* feat: implement settings app for theme customization and opacity control

* feat: add --quiet option to application desktop entry

* feat: add dynamic background opacity settings for light and dark modes

* fix: remove --quiet option

* feat: update glass effect colors for dark and light modes
2025-12-17 19:02:59 -03:00

85 lines
2.3 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "win11-clipboard-history",
"version": "1.0.0",
"identifier": "com.clipboard.win11history",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"trayIcon": {
"iconPath": "icons/icon.png",
"iconAsTemplate": false
},
"windows": [
{
"title": "Clipboard History",
"label": "main",
"width": 360,
"height": 480,
"resizable": false,
"decorations": false,
"transparent": true,
"visible": false,
"skipTaskbar": true,
"alwaysOnTop": true,
"focus": true
},
{
"title": "Settings - Clipboard History",
"label": "settings",
"width": 480,
"height": 520,
"resizable": false,
"decorations": true,
"transparent": false,
"visible": false,
"skipTaskbar": false,
"alwaysOnTop": false,
"center": true,
"focus": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["deb", "appimage", "rpm"],
"icon": [
"icons/32x32.png",
"icons/64x64.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"category": "Utility",
"shortDescription": "Windows 11-style Clipboard History Manager",
"longDescription": "A modern, beautiful clipboard history manager for Linux that mimics the Windows 11 Win+V clipboard experience. Built with Tauri, React, and Rust.",
"linux": {
"deb": {
"depends": ["xclip", "wl-clipboard", "acl"],
"files": {
"/etc/udev/rules.d/99-win11-clipboard-input.rules": "bundle/linux/99-win11-clipboard-input.rules"
},
"postInstallScript": "bundle/linux/postinst.sh",
"preRemoveScript": "bundle/linux/postrm.sh"
},
"rpm": {
"depends": ["xclip", "wl-clipboard", "acl"],
"postInstallScript": "bundle/linux/postinst.sh",
"preRemoveScript": "bundle/linux/postrm.sh"
}
},
"resources": [
"bundle/linux/99-win11-clipboard-input.rules"
]
}
}