How to change the Monitor brightness on Linux?
问题 How do I programmatically change the monitor brightness on Linux? I'm using SLES 11. 回答1: You can always use xrandr --output LVDS1 --brightness 0.9 回答2: You can try using xbacklight. xbacklight -set 100 回答3: For me it works perfectly with xbacklight . If you for example wish to set up a key binding, you can use bindsym $SUPER+Shift+plus exec xbacklight -inc 10 bindsym $SUPER+Shift+minus exec xbacklight -dec 10 in your window managers config (I use i3) to regulate your screen's brightness