mirror of
https://github.com/gustavosett/Windows-11-Clipboard-History-For-Linux
synced 2026-04-25 17:15:35 +02:00
110 lines
3.2 KiB
JSON
Generated
110 lines
3.2 KiB
JSON
Generated
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "win11-clipboard-history",
|
|
"version": "0.5.4",
|
|
"identifier": "dev.gustavosett.clipboard-history",
|
|
"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,
|
|
"minWidth": 300,
|
|
"minHeight": 300,
|
|
"resizable": true,
|
|
"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", "rpm", "appimage"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/64x64.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico",
|
|
"icons/icon.png"
|
|
],
|
|
"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",
|
|
"xdotool",
|
|
"wl-clipboard",
|
|
"acl",
|
|
"polkitd",
|
|
"pkexec",
|
|
"libwebkit2gtk-4.1-0 | libwebkit2gtk-4.0-37",
|
|
"libgtk-3-0",
|
|
"libayatana-appindicator3-1 | libappindicator3-1"
|
|
],
|
|
"files": {
|
|
"/usr/bin/win11-clipboard-history": "bundle/linux/wrapper.sh",
|
|
"/etc/udev/rules.d/99-win11-clipboard-input.rules": "bundle/linux/99-win11-clipboard-input.rules",
|
|
"/usr/share/applications/win11-clipboard-history.desktop": "bundle/linux/win11-clipboard-history.desktop",
|
|
"/usr/share/icons/hicolor/128x128/apps/win11-clipboard-history.png": "icons/128x128.png",
|
|
"/usr/share/icons/hicolor/256x256/apps/win11-clipboard-history.png": "icons/icon.png",
|
|
"/usr/share/icons/hicolor/scalable/apps/win11-clipboard-history.svg": "icons/icon.svg"
|
|
},
|
|
"postInstallScript": "bundle/linux/postinst.sh",
|
|
"preRemoveScript": "bundle/linux/postrm.sh"
|
|
},
|
|
"rpm": {
|
|
"depends": [
|
|
"xclip",
|
|
"xdotool",
|
|
"wl-clipboard",
|
|
"acl",
|
|
"polkit",
|
|
"webkit2gtk4.1",
|
|
"gtk3",
|
|
"libayatana-appindicator-gtk3"
|
|
],
|
|
"postInstallScript": "bundle/linux/postinst.sh",
|
|
"preRemoveScript": "bundle/linux/postrm.sh"
|
|
}
|
|
},
|
|
"resources": ["bundle/linux/99-win11-clipboard-input.rules"]
|
|
}
|
|
}
|