Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the Monitor brightness on Linux?

Tags:

How do I programmatically change the monitor brightness on Linux?

I'm using SLES 11.

like image 367
Alexander Stolz Avatar asked Jul 08 '11 14:07

Alexander Stolz


People also ask

How do I change the brightness of a second monitor in Ubuntu?

If possible, you should set the brightness using the hardware. That way the brightness control of gnome can set the brightness of external monitors as well. Rather than plugging in a brightness level for xrandr you can use this bash script to adjust the brightness up or down in steps.

How do I control the brightness of my external monitor?

To change the brightness on an external monitor, use the buttons on it. The Brightness slider appears in action center in Windows 10, version 1903. To find the brightness slider in earlier versions of Windows 10, select Settings > System > Display, and then move the Change brightness slider to adjust the brightness.


2 Answers

You can always use

xrandr --output LVDS1 --brightness 0.9
like image 114
christof Avatar answered Sep 19 '22 01:09

christof


You can try using xbacklight.

xbacklight -set 100

like image 23
foxhead128 Avatar answered Sep 21 '22 01:09

foxhead128