Review of "Transparent Top Bar" version 1

Details Page Preview

Bring back the transparent top bar when free-floating in GNOME Shell 3.32. This basically comes from the feature implementation removed in GNOME Shell 3.32, and I modified the code a bit to make it an extension. Enjoy!

Extension Homepage
https://github.com/zhanghai/gnome-shell-extension-transparent-top-bar

No comments.

FAQ

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Previous Reviews on this Version

fmuellner active
114 function init() { 115 extension = new Extension(); 116 } 117 118 function enable() { 119 extension.enable(); 120 } 121 122 function disable() { 123 extension.disable(); 124 } You can simplify that to: function init() { return new Extension(); } gnome-shell will then call the enable()/disable() methods of the returned object when appropriate.