Make the main shell components (Top bar, dash, workspace view) transparent.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
11 | Active |
10 | Active |
9 | Active |
8 | Rejected |
7 | Active |
6 | Active |
5 | Active |
4 | Active |
3 | Active |
2 | Rejected |
1 | Active |
1. Remove line 10-18 prefs.js and use this instead: ```js this.settings = ExtensionUtils.getSettings(); ``` 2. You cannot create objects in global scopes (line 7 to 18): https://gjs.guide/extensions/review-guidelines/review-guidelines.html#only-use-init-for-initialization Only use this enable: ```js const settings = ExtensionUtils.getSettings(); ``` and null that out in disable: ```js settings = null; ``` If you need any help with your extension you can ask us on: - [GNOME Matrix Channel](https://matrix.to/#/#extensions:gnome.org) - IRC Bridge: irc://irc.gimpnet.org/shell-extensions