This extension lets you view server statuses and power on remote servers directly from a GNOME Shell indicator. Each configured server displays its current online status (checked via ping). If a MAC address is provided, you can send a Wake-on-LAN (WOL) packet to power it on remotely.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
| Version | Status |
|---|---|
| 4 | Unreviewed |
| 3 | Active |
| 2 | Active |
| 1 | Rejected |
1. `lookupByURL()` is a bad practice (`extension/utils.js`). You can store `this` from the entry point in `ME` and export it in `extension.js`. That can be imported in other files. 2. Please don't store any instance of objects in a property of the default class you are exporting. You are doing that in `prefs.js`. that won't allow the garbage collector to do its job after window close: [EGO Review Guidelines: Destroy](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects) To fix that you can clean up on window close request: ```js window.connect('close-request', () => { // clean up here }); ``` If you need any help with your extension you can ask us on: - [GNOME Extensions Matrix Channel](https://matrix.to/#/#extensions:gnome.org) - IRC Bridge: irc://irc.gimpnet.org/shell-extensions