| Summary: | Brightness slider lets me disable the backlight | ||
|---|---|---|---|
| Product: | [Plasma] plasmashell | Reporter: | alexandermasokin |
| Component: | Power and Battery widget | Assignee: | ratijas <me> |
| Status: | RESOLVED UPSTREAM | ||
| Severity: | normal | CC: | kde, me, nate |
| Priority: | NOR | Keywords: | usability |
| Version First Reported In: | 5.24.5 | ||
| Target Milestone: | 1.0 | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| See Also: | https://bugs.kde.org/show_bug.cgi?id=447475 | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
alexandermasokin
2022-06-08 12:36:10 UTC
You're talking about the System Tray applet, right? In there, the slider does go down to 0%, but internally it's actually setting the backlight value to 1, not 0. This would suggest that your display hardware turns off the backlight at a value above 0, which is unfortunate. Sadly this isn't standardized at all. (In reply to Nate Graham from comment #1) > You're talking about the System Tray applet, right? In there, the slider > does go down to 0%, but internally it's actually setting the backlight value > to 1, not 0. This would suggest that your display hardware turns off the > backlight at a value above 0, which is unfortunate. Sadly this isn't > standardized at all. Yes, the system tray applet for battery and brightness. Why not just limit the slider to 1-100%? 1% is barely visible at all in daylight but perfect for using my computer in complete darkness. > Yes, the system tray applet for battery and brightness. Why not just limit the slider to 1-100%? >> In there, the slider does go down to 0%, but internally it's actually setting the backlight value to 1%, not 0%. It already does exactly that. Seems like your hardware treats that 1% as a signal to turn the screen completely off. Please, test your setup more and tell us what's the lowest limit when the screen is not turned off yet. You may write raw values to sysfs backlight 'files', use xbacklight or whatever the tool you are using. Indeed, I would be interested in knowing that as well. Turning off the backlight at nonzero brightness values is very odd behavior from the hardware. /sys/class/backlight/intel_backlight/brightness: 232 sets the backlight to the lowest level without switching it off. 231 switches it off completely. max_brightness is 120000. Both values are slightly below the 2% threshold: 0,019(3) vs. 0,01925. I guess we could bump the minimum brightness to 2% then. This has since been fixed by a change in the Intel GPU driver. |