A simple GNOME extension that provides a panel timer with an alarm sound notification.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. Set the instance in `this.menu` property (line 292 `extension.js`). 2. Timeout hasn't been addressed here (line 145 `extension.js`).
Btw, line 146 `extension.js` will give you fatal error since you are still using `Gst` there.
Thanks for the reviews. Btw, your channel is amazing, the reason why I adventured myself creating this plugin ;)
Thanks! I'm glad it brought you to the extension community. Let me know if you need any help with the fix.
By the way, what do you mean by 1. Set the instance in `this.menu` property (line 292 `extension.js`).? I tried some stuff I found on internet but this is the only one I could make work.
I mean you should do this instead: ```js this._menu = new TimerMenu(this, 1.0, St.Side.TOP, this); this.setMenu(this._menu); ``` Don't forget to use `this._menu` instead of `this.menu` in destroy.
:facepalm: that's literally what went wrong, I forgot _. There we go, I will upload the new version now. Thanks!