Let it snow! - GNOME 46 support - Multiple monitors support - GUI preferences - Animation configuration - Fully customizable appearance
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
24 | Active |
23 | Active |
22 | Active |
21 | Active |
20 | Rejected |
19 | Rejected |
18 | Rejected |
17 | Rejected |
16 | Active |
15 | Active |
14 | Active |
13 | Rejected |
12 | Active |
11 | Inactive |
10 | Inactive |
9 | Rejected |
8 | Rejected |
7 | Active |
6 | Inactive |
5 | Inactive |
4 | Inactive |
3 | Rejected |
2 | Inactive |
1 | Rejected |
Timeout should be removed on disable (line 8 js/utils.js): https://gjs.guide/extensions/review-guidelines/review-guidelines.html#remove-main-loop-sources
btw, I understand you are storing it in `this.timerId` by `onRecreated` (line 66 js/manager.js) but returning the source id by `setInterval()` would be much better. and when you call `setInterval()` again (line 11 js/utils.js), that can cause an infinite loop. In that case, `onRecreated` receives the latest source id without removing the previous one.
I do it that way with `onRecreacted` because I re-create timeouts recursively. Manager will receive only first timeout id and that it will be changed. I think the issue can be fixed just by adding `GLib.Source.remove` before re-creation. The reason I'm doing all that is because I need a dynamic timeout
I do it that way with `onRecreacted` because I re-create timeouts recursively. Manager will receive only first timeout id and that it will be changed. I think the issue can be fixed just by adding `GLib.Source.remove` before re-creation. The reason I'm doing all that is because I need a dynamic timeout