Track Claude Pro usage from the GNOME top bar: current session percentage in the panel, plus a menu with every active limit (session, weekly, per-model) and reset times.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-X-004 warning
extensions should avoid synchronous file IO in shell code
Shell code should avoid synchronous file IO APIs like `GLib.file_get_contents()` and `Gio.File.load_contents()`.
usageClient.js:30
file.load_contents(null)
EGO-L-003 warning
signals connected by extension should be disconnected in disable()
Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.
extension.js:114
this._settings.connect('changed::refresh-interval', () => {
this._backoffLevel = 0;
this._scheduleNext(this._baseInterval());
})
extension.js:103
this.menu.connect('open-state-changed', (_m, open) => {
if (!open)
return;
const nowMs = GLib.get_monotonic_time() / 1000;
if (this._lastFetchMs === 0 ||
nowMs - this._lastFetchMs > MENU_REFRESH_DEBOUNCE_MS)
| Version | Status |
|---|---|
| 0.1.1 (2) | Active |
| 0.1.0 (1) | Rejected |