supergfxctl-gex is a gnome extension for supergfxctl (https://gitlab.com/asus-linux/supergfxctl).
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
33 | Active |
32 | Rejected |
31 | Rejected |
30 | Active |
29 | Inactive |
28 | Inactive |
27 | Rejected |
26 | Inactive |
25 | Inactive |
24 | Inactive |
23 | Rejected |
22 | Active |
21 | Inactive |
20 | Rejected |
19 | Rejected |
18 | Inactive |
17 | Inactive |
16 | Inactive |
15 | Inactive |
14 | Inactive |
13 | Inactive |
12 | Inactive |
11 | Inactive |
10 | Inactive |
9 | Inactive |
8 | Inactive |
7 | Inactive |
6 | Inactive |
5 | Inactive |
4 | Inactive |
3 | Rejected |
2 | Inactive |
1 | Inactive |
Update (v28 -> v29): I've fully refactored the extension and added some "structure" to it. Techinically not much has changed, except I respecetd the last recommendations from your side (like using misc.utils for command spawning and some more spaces before methods, etc - we're still using tsc for compilation so this is a tricky thing). Original source(if needed): https://gitlab.com/asus-linux/supergfxctl-gex
Thanks! btw, since you're using 43 and 44, you can use optional chaining. For example: ```js if (this.quickToggles !== null) { this.quickToggles.disable(); } this.quickToggles = null; ``` Can be: ```js this.quickToggles?.disable(); this.quickToggles = null; ```
Haha yes, overseen to adjust.. (nullable-pattern is well-known) I'll correct that with the next release, was kinda in a hurry to get that updatedet! As always, many thanks for your kind support!