So for some reason it’s controlled by the flies in/sys/class/backlight/intel_backlight/. Check it out if you want.
There are a bunch of files in there, but these are the main ones:
max_brightness - Is the max brightness value (937)brightness - the file you use to set the brightnessactual_brightness - so it’s called actual brightness but fuck knows what it does…. and a bunch of other shit who knows.
It’s called brightness. This is what’s in brightness:
#!/bin/bashmax=$(cat /sys/class/backlight/intel_backlight/max_brightness)if [ $# == 1 ]; thenif [ $1 -gt 0 -a $1 -lt $max ]; thensudo echo $1 > /sys/class/backlight/intel_backlight/brightnesselseecho "Invalid brightness value!"fielsecat /sys/class/backlight/intel_backlight/brightnessfi
The shit is from here.