Compare commits
2 Commits
e291b79f2c
...
c6907ea93f
| Author | SHA1 | Date | |
|---|---|---|---|
| c6907ea93f | |||
| 53489ab67e |
10
README.md
10
README.md
@@ -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://indefero.soutade.fr/p/genericmonitor/source/tree/master/examples
|
||||
Python examples are available @ https://forge.soutade.fr/soutade/GnomeShellGenericMonitor/src/branch/master/examples
|
||||
|
||||
|
||||
Development
|
||||
@@ -176,6 +176,14 @@ 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]
|
||||
```
|
||||
|
||||
@@ -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-release-event', this._clicked.bind(this));
|
||||
id = widget.connect('button-press-event', this._clicked.bind(this));
|
||||
array.push(id);
|
||||
}
|
||||
|
||||
|
||||
@@ -2,10 +2,9 @@
|
||||
"uuid": "generic-monitor@gnome-shell-extensions",
|
||||
"name": "Generic Monitor",
|
||||
"description": "Display text & icon on systray using DBUS",
|
||||
"version": "18",
|
||||
"version": "20",
|
||||
"shell-version": [
|
||||
"48",
|
||||
"48.5"
|
||||
"49"
|
||||
],
|
||||
"url": "https://forge.soutade.fr/soutade/GnomeShellGenericMonitor"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user