oshirowanen Asked: 2016-05-17 02:27:47 +0800 CST2016-05-17 02:27:47 +0800 CST 2016-05-17 02:27:47 +0800 CST Artificially increase maximum screen brightness 772 I have my laptop set to maximum brightness, but it's not bright enough. Is it possible to somehow make it brighter? 16.04 1 Answers Voted Best Answer Hizqeel 2016-05-17T02:39:00+08:002016-05-17T02:39:00+08:00 Run this to see a list of your outputs. You're looking for the one that is "connected": xrandr --current Here's a screenshot of my list. The output I want is the "connected" eDP1 at the top: Now you can run these commands to make adjustments. Replace eDP1 with the name of your output, and change 1.2 to make the adjustments: xrandr --output eDP1 --brightness 1.2 # Note: 1 is default You can also use gamma instead of brightness: xrandr --output <outputname> --gamma 0.5:1.0:1.0 # Note: 1.0:1.0:1.0 is default
Run this to see a list of your outputs. You're looking for the one that is "connected":
Here's a screenshot of my list. The output I want is the "connected"
eDP1
at the top:Now you can run these commands to make adjustments. Replace
eDP1
with the name of your output, and change1.2
to make the adjustments:You can also use
gamma
instead ofbrightness
: