Beautiful top bar system monitor: CPU (per-core usage, freq, temp), RAM (breakdown, DIMM temperatures, top processes), GPU, disks and network. Hover a chip to open its detail panel.
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:40
GLib.file_get_contents(path)
EGO-L-005 warning
owned object references should be released in disable()
Owned references that are cleaned up in `disable()` should also be released with `null` or `undefined`.
extension.js:345
this._appTracker = Shell.WindowTracker.get_default()
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:1001
this.menu.connect('open-state-changed', (_m, open) => {
if (open) {
this._applyGlass();
this._store.refresh();
if (this._key === 'net')
this._store.refreshNetProcs();
this.updatePanel();
| Version | Status |
|---|---|
| 1 | Unreviewed |