codeburn/windows/src-tauri/tauri.conf.json
iamtoruk b199af182e windows: import the Tauri tray app as the Windows menubar
Brings the Tauri 2.x tray popover from #1022 onto main as windows/, mirroring
mac/. Product name, bundle identifier, and version line up with the macOS
menubar (org.agentseal.codeburn-menubar, 0.9.20); the crate is renamed off
"desktop" so it no longer collides with the Electron app in app/.

Linux (ksni) stays compiled and dev-usable but is documented as experimental:
gnome/ is the shipping Linux surface.

The five src/ CLI commits on that branch are dropped - they re-implement a
daily-bucketing fix main already carries.
2026-08-18 04:00:59 -07:00

64 lines
1.8 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "CodeBurn Menubar",
"version": "0.9.20",
"identifier": "org.agentseal.codeburn-menubar",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "popover",
"title": "CodeBurn",
"width": 360,
"height": 660,
"decorations": false,
"transparent": true,
"resizable": false,
"alwaysOnTop": true,
"skipTaskbar": true,
"visible": false,
"focus": false,
"shadow": true,
"windowEffects": {
"effects": ["acrylic"],
"state": "active"
}
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; font-src 'self' data:; connect-src 'self' ipc: https://api.frankfurter.app"
},
"trayIcon": {
"id": "codeburn-tray",
"iconPath": "icons/tray.png",
"iconAsTemplate": false,
"tooltip": "CodeBurn"
}
},
"bundle": {
"active": true,
"category": "Utility",
"shortDescription": "AI coding cost tracker",
"longDescription": "Shows today's AI coding spend in your system tray. Popover breaks down cost by activity, model, and provider across Claude Code, Cursor, Codex, and more.",
"publisher": "AgentSeal",
"homepage": "https://github.com/getagentseal/codeburn",
"targets": ["deb", "rpm", "appimage", "msi"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.png",
"icons/icon.ico"
],
"linux": {
"deb": {
"depends": ["libwebkit2gtk-4.1-0", "libayatana-appindicator3-1"]
}
}
}
}