Debian – How to change screen brightness in debian wheezy that installed in laptop

brightnessdebianmonitors

My screen is just too bright. How can I adjust screen brightness? So far I tried the following:

  1. "Brightness and lock" settings doesn't work.
  2. Fn + F6 or F7 doesn't work.
  3. This doesn't work.
  4. This doesn't work too.

My Laptop is Toshiba Satelite L745

Best Answer

You can try xrandr tool.

First run xrandr --verbose and look for a line with resolution like LVDS1 connected 1024x600+0+0. The name of your display (LVDS1 in this example) is needed here. Now you are ready to set brightness:

xrandr --output LVDS1 --brightness 0.4

xrandr sets software, not hardware brightness so you can exceed both upper and lower limits:

xrandr --output LVDS1 --brightness 1.7
xrandr --output LVDS1 --brightness -0.4  #negative value is also possible
xrandr --output LVDS1 --brightness 1
Related Question