Control brightness and contrast with ddc and extra screen dimming with black overlay, It requires ddcutil to be installed, i2c permissions for non-root users configured.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
| Version | Status |
|---|---|
| 20 | Active |
| 19 | Active |
| 18 | Rejected |
| 17 | Rejected |
| 16 | Active |
| 15 | Active |
| 14 | Inactive |
| 13 | Inactive |
| 12 | Inactive |
| 11 | Inactive |
| 10 | Inactive |
| 9 | Inactive |
| 8 | Inactive |
| 7 | Inactive |
| 6 | Inactive |
| 5 | Inactive |
| 4 | Rejected |
| 3 | Rejected |
| 2 | Rejected |
| 1 | Rejected |
1. You should null out `displays` instead (line 189 `extension.js`). 2. Please move line 183-188 `extension.js` to the `Indicator` class instead where you create those timeouts. That way when you destroy the indicator, you will remove the timeouts too. For example, in `Indicator` class: ```js destroy() { // remove timeouts here // then call `super.destroy()`: super.destroy(); } ```