mirror of
https://github.com/gustavosett/Windows-11-Clipboard-History-For-Linux
synced 2026-04-26 01:25:11 +02:00
66 lines
1.7 KiB
JSON
66 lines
1.7 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": true
|
|
},
|
|
"windows": [
|
|
{
|
|
"title": "Clipboard History",
|
|
"label": "main",
|
|
"width": 360,
|
|
"height": 480,
|
|
"resizable": false,
|
|
"decorations": false,
|
|
"transparent": true,
|
|
"visible": false,
|
|
"skipTaskbar": true,
|
|
"alwaysOnTop": true,
|
|
"focus": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["deb", "appimage", "rpm"],
|
|
"icon": [
|
|
"icons/32x32.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": {
|
|
"files": {
|
|
"/etc/udev/rules.d/99-win11-clipboard-input.rules": "bundle/linux/99-win11-clipboard-input.rules"
|
|
},
|
|
"postInstallScript": "bundle/linux/postinst.sh"
|
|
},
|
|
"rpm": {
|
|
"postInstallScript": "bundle/linux/postinst.sh"
|
|
}
|
|
},
|
|
"resources": [
|
|
"bundle/linux/99-win11-clipboard-input.rules"
|
|
]
|
|
}
|
|
}
|