Title says it all. Ubuntu 11.10 doesn't save my brightness settings between sessions. Everytime I boot up, the brightness is always at zero, and I always have to set it back to my preferred setting (at maximum). How can I ensure that my brightness preference will persist after reboot?

link|improve this question
feedback

1 Answer

The file /etc/rc.local add before line exit 0:

echo 5 > /sys/class/backlight/acpi_video0/brightness
exit 0

Where 5 is the brightness level from 0 to 10

link|improve this answer
1  
The max brightness is defined in /sys/class/backlight/acpi_video0/max_brightness. The default is 15 on my laptop. So if you want to set it to 50%, you should use echo 7. – amazingjxq Dec 3 '11 at 3:50
feedback

protected by Community May 4 at 15:36

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.