Add a hot edge that activates the overview to the bottom of the screen. This provides a better mouse-based workflow and can be an alternative to a dock.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
25 | Active |
24 | Active |
23 | Active |
22 | Active |
21 | Rejected |
20 | Active |
19 | Rejected |
18 | Rejected |
17 | Active |
16 | Active |
15 | Active |
14 | Active |
13 | Inactive |
12 | Inactive |
11 | Inactive |
10 | Inactive |
9 | Rejected |
8 | Inactive |
7 | Inactive |
6 | Inactive |
5 | Inactive |
4 | Inactive |
3 | Inactive |
2 | Inactive |
1 | Inactive |
(not sure if the reviewer will see this, but worth a shot...) Agreed, but the documentation I was looking at ( https://gjs.guide/extensions/development/debugging.html#basic-debugging ) didn't give any indication on how to do debug logging, or how to activate debug mode. Could you point me to any documentation on that?
Create a function called logDebug like this: const debugMode = true; function logDebug(message) { if (!debugMode) { return; } log(message); } Now instead of using log() directly, you can use logDebug() instead. When you want send your extension for review, just set debugMode to false. If you have any question about the extensions, you can ask us on GNOME Matrix channel: https://matrix.to/#/#extensions:gnome.org