mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-05-17 12:20:43 +00:00
GNOME 45+ extension that shows live token costs in the top bar panel with a dropdown for provider breakdown, top activities/models, cache stats, and budget alerts. Polls `codeburn status --format menubar-json` every 30s — same data contract as the macOS menubar app. Includes GSettings preferences (refresh interval, compact mode, budget threshold, per-provider enable/disable toggles) with Libadwaita UI. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
70 lines
1.5 KiB
Markdown
70 lines
1.5 KiB
Markdown
# CodeBurn GNOME Extension
|
|
|
|
Monitor AI coding assistant token usage and costs from your GNOME desktop panel.
|
|
|
|
## Requirements
|
|
|
|
- GNOME Shell 45 or later
|
|
- CodeBurn CLI installed (`npm i -g codeburn`)
|
|
- `glib-compile-schemas` (usually part of `glib2-devel` or `libglib2.0-dev`)
|
|
|
|
## Install
|
|
|
|
```bash
|
|
cd gnome
|
|
chmod +x install.sh
|
|
./install.sh
|
|
```
|
|
|
|
Then restart GNOME Shell:
|
|
- **Wayland:** Log out and back in
|
|
- **X11:** Press `Alt+F2`, type `r`, press Enter
|
|
|
|
Enable the extension:
|
|
|
|
```bash
|
|
gnome-extensions enable codeburn@codeburn.dev
|
|
```
|
|
|
|
## Configure
|
|
|
|
Open preferences:
|
|
|
|
```bash
|
|
gnome-extensions prefs codeburn@codeburn.dev
|
|
```
|
|
|
|
Or use the GNOME Extensions app.
|
|
|
|
### Settings
|
|
|
|
| Setting | Default | Description |
|
|
|---------|---------|-------------|
|
|
| Refresh Interval | 30s | How often to poll CodeBurn CLI |
|
|
| Default Period | Today | Period shown on open |
|
|
| Compact Mode | Off | Hide cost label, show icon only |
|
|
| Budget Threshold | $0 | Daily budget alert (0 = disabled) |
|
|
| Budget Alerts | Off | Show warning when budget exceeded |
|
|
| CLI Path | (auto) | Custom path to `codeburn` binary |
|
|
|
|
## Uninstall
|
|
|
|
```bash
|
|
gnome-extensions disable codeburn@codeburn.dev
|
|
rm -r ~/.local/share/gnome-shell/extensions/codeburn@codeburn.dev
|
|
```
|
|
|
|
## Development
|
|
|
|
Test changes without installing:
|
|
|
|
```bash
|
|
# Compile schemas locally
|
|
glib-compile-schemas schemas/
|
|
|
|
# Symlink for development
|
|
ln -sf "$(pwd)" ~/.local/share/gnome-shell/extensions/codeburn@codeburn.dev
|
|
|
|
# Watch logs
|
|
journalctl -f -o cat /usr/bin/gnome-shell
|
|
```
|