Hey,
I can change my display brightness in the file /sys/class/backlight/intel_backlight/brightness with the command "echo x > /sys/class/backlight/intel_backlight/brightness" were x is a certain brightness level.
I want to use this command to set a default brightness level for every reboot since the actual one is much to bright.
The above command doesnt work right away, as I found out I first have to change the permissions for /sys/class/backlight/intel_backlight/brightness.
I did this with "sudo chmod a+w" (don't know if that's the right way, but it works...?).
But these permissions aren't permanent, when i reboot they're gone, so i tried the following:
I added to /ect/rc.local the two lines (opened with gksudo gedit ...):
chmod a+w /sys/class/backlight/intel_backlight/brightness
echo 134 > /sys/class/backlight/intel_backlight/brightness #(*)
in order to achieve what I described ahead.
But this doesn't work as it sure changes the file permissions (I can use the command "echo x > /sys/.../backlight" afterwards without any "permissions denied"-output),
but the actual command, which i denoted #(*) doesn't get executed, so my display stays bright, if I don't change it "by hand".
For any recommendations thank you very much in advance!
Bookmarks