I can't change the brightness in Kubuntu 18.04. I tried to do it with the keyboard shortcuts (Fn + ←/→) and in the Battery and brightness section in the Task Manager.
Asked
Active
Viewed 1,028 times
3
1 Answers
1
As just a simply workaround you can use the following command-line to set your brightness:
echo 255 | sudo tee /sys/class/backlight/*/brightness >/dev/null
Change the 255
value with one from 0
to 255
to move from min
to max
value.

maxwatt
- 488
-
1So i suppose there is no easier way to do that, right? – Francesco 'oH pongwIj'e' Apr 17 '20 at 18:45
-
I suppose you have some trouble with the display configuration, so to solve the issue from the root, you have to found the original problem. – maxwatt Apr 17 '20 at 20:00
sudo lshw -C display
andls -l /usr/share/X11/xorg.conf.d/
– Raffa Apr 17 '20 at 18:37