Panel indicator and window management for the Loft messaging app. Adds a panel menu listing Loft's configured services, each with show/hide, do-not-disturb and quit controls, plus a global do-not-disturb switch. Also activates Loft windows on request and keeps the ones hidden to the tray out of alt-tab. Requires Loft to be installed and running; the menu controls it over D-Bus.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO015 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:637
dndBtn.connect('clicked', () => {
this._callDaemonMethod(dbusName, 'SetDnd', '(b)', [!svc.dnd]);
})
extension.js:324
dndItem.connect('toggled', (_item, state) => {
this._callDaemonMethod(dbusServiceName, 'SetDnd', '(b)', [state]);
})
extension.js:295
icon.connect('notify::allocation', () => {
badge.set_position(
icon.x + icon.width - DOT_SIZE,
icon.y + icon.height - DOT_SIZE
);
dndBadge.set_position(
icon.x + icon.width - DASH_W,
icon.y +
extension.js:492
icon.connect('notify::allocation', () => {
badge.set_position(
icon.x + icon.width - DOT_SIZE,
icon.y + icon.height - DOT_SIZE
);
dndBadge.set_position(
icon.x + icon.width - DASH_W,
icon.y +
extension.js:649
quitBtn.connect('clicked', () => {
this._callDaemonMethod(dbusName, 'Quit');
menu.close();
})
extension.js:623
showHideBtn.connect('clicked', () => {
this._callDaemonMethod(dbusName, 'Toggle');
menu.close();
})
EGO014 warning
objects created by extension should be destroyed in disable()
Objects assigned in `enable()` are missing matching `.destroy()` calls in `disable()` or its helper methods.
extension.js:506
this._combinedBadge = badge
extension.js:507
this._combinedDndBadge = dndBadge
| Version | Status |
|---|---|
| 2.1 (8) | Active |
| 2.0 (7) | Active |
| 1.3 (6) | Active |
| 1.1 (5) | Active |
| 1.1 (4) | Rejected |
| 1.1 (3) | Rejected |
| 1.1 (2) | Rejected |
| 1.0 (1) | Rejected |