3

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.

karel
  • 114,770

1 Answers1

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