Shows Codex usage from the local Codex CLI auth in the GNOME top bar.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-L-001 warning
extension must not create GObject instances or modify shell before enable()
Resource creation or signal/source setup was found outside `enable()`.
Only use initialization for static resources
secret.js:9
new Secret.Schema(
SECRET_SCHEMA_NAME,
Secret.SchemaFlags.NONE,
{account: Secret.SchemaAttributeType.STRING},
)
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:53
this.menu.connect('open-state-changed', (_menu, isOpen) => {
if (isOpen)
void this.refresh();
})
You cannot create instance of objects in global scope (line 9 `secret.js`): [EGO Review Guidelines: Destroy](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects)