For regular operation on your backlight you can use xrandr
and xbacklight
, but that will not get beyond its regular limits.
Try to find your kernel's backlight interface.
find /sys -name "*backlight*"
For my system, it is provided in the /sys/class/backlight/nvidia_backlight
folder where I can use the files
actual_brightness
bl_power
brightness
max_brightness
to test things out. For example:
# cat max_brightness
127
# cat actual_brightness
127
# echo 60 > brightness # <-- here it actually decreases my backlight
# cat actual_brightness
59
If you're using an nVidia GPU you could try out nvidiabl
or even patch the source in nvidiabl-laptops.h
to override default min/max values to fit your needs.
However -- keep in mind that forcing it beyond its limits may damage your hardware.