Turning off the backlight will reduce heat and darken the room, but it will still allow the LCD to burn in after months/years of displaying the exact same text.
I was having trouble writing to the brightness file. Running mount showed that sysfs was mounted read only, and running sudo mount -o remount,rw /sys said the /sys wasn’t in /proc/mount (even though it was in there). So I cheated.
- sudo mkdir /ss
- sudo mount /dev/null -t sysfs /ss
- echo 0 | sudo tee /ss/class/backlight/*/brightness
- sudo umount /ss
- sudo rmdir /ss
There’s probably a way to make sysfs mount rw on boot but I’m too lazy to find it. Using /dev/null bypasses some checks that try to prevent sysfs from being mounted multiple times.