Shows live GPU VRAM usage in the top bar; click for a per-GPU summary, the processes using the GPU, and the full nvidia-smi output.
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()`.
extension.js:109
GLib.file_get_contents(`/proc/${pid}/cmdline`)
extension.js:123
GLib.file_get_contents(`/proc/${pid}/comm`)
EGO-A-005 manual_review
extensions should not access the clipboard directly
Direct clipboard access via `St.Clipboard.get_default()` requires reviewer scrutiny.
extension.js:394
St.Clipboard.get_default()
EGO-P-006 warning
unnecessary build and translation artifacts should not be shipped
Compiled GSettings schemas should not be shipped for 45+ packages.
Don't include unnecessary files
schemas/gschemas.compiled
schemas/gschemas.compiled
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:321
this.menu.connect('open-state-changed', (menu, isOpen) => {
if (isOpen) {
this._renderMenu();
this._pollGpus();
this._startDetailPolling();
} else {
this._stopDetailPolling();
this._rawPin
| Version | Status |
|---|---|
| 3 | Unreviewed |
| 2 | Rejected |
| 1 | Active |