Adds a binary clock to the gnome bar Does not work for gnome shell 45 and up. Use the maintained version over at Adds a binary clock to the gnome bar
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Your extension looks mostly good, however there are two problems: 1) You creating objects and connecting signals to them in `init()` which is strongly discouraged. This should be done in `enable()` and undone in `disable()`, or it may result in orphaned objects that the garbage collector can not free. 2) At the end of a ::repaint callback, you must call `context.$dispose()` or you will leak a small amount of memory each invocation If you can make these changes and submit a new version I will approve your extension.