1 Commits

Author SHA1 Message Date
soutade 15ecfff82b Update metadata.json 2025-11-23 11:52:36 +01:00
3 changed files with 6 additions and 16 deletions
+1 -9
View File
@@ -168,7 +168,7 @@ gdbus call --session --dest org.gnome.Shell --object-path /com/soutade/GenericMo
gdbus call --session --dest org.gnome.Shell --object-path /com/soutade/GenericMonitor --method com.soutade.GenericMonitor.deleteGroups '{"groups":["new"]}'
```
Python examples are available @ https://forge.soutade.fr/soutade/GnomeShellGenericMonitor/src/branch/master/examples
Python examples are available @ https://indefero.soutade.fr/p/genericmonitor/source/tree/master/examples
Development
@@ -176,14 +176,6 @@ Development
After doing code update, you can test it within a nested window. In other cases you have to restart GNOME.
mutter-dev-bin package is required
```bash
dbus-run-session gnome-shell --devkit --wayland
```
before GNOME 48
```bash
dbus-run-session -- gnome-shell --nested [--wayland]
```
+1 -2
View File
@@ -104,7 +104,7 @@ class SignalMgt {
array.push(id);
id = widget.connect('scroll-event', this._onScroll.bind(this));
array.push(id);
id = widget.connect('button-press-event', this._clicked.bind(this));
id = widget.connect('button-release-event', this._clicked.bind(this));
array.push(id);
}
@@ -800,7 +800,6 @@ class GenericMonitorDBUS {
}
this.monitor_groups = {};
this._dbusImpl.unexport();
this._dbusImpl = null;
}
}
+2 -3
View File
@@ -2,10 +2,9 @@
"uuid": "generic-monitor@gnome-shell-extensions",
"name": "Generic Monitor",
"description": "Display text & icon on systray using DBUS",
"version": "21",
"version": "19",
"shell-version": [
"50",
"49"
"48",
],
"url": "https://forge.soutade.fr/soutade/GnomeShellGenericMonitor"
}