Thanks, I'll try asap.
So the next question is, why ? why do I need to do that, shouldn't it be a 'normal' feature ?
O'
---------- Post added at 08:50 PM ---------- Previous post was at 04:09 PM ----------
Quote:
Originally Posted by Japplo
Add:
Code:
if [ -f /sys/class/backlight/acpi_video0/brightness ]; then
echo 3 > /sys/class/backlight/acpi_video0/brightness; fi
to /etc/rc.d/rc.local, kalibari
|
Hi Japplo,
I looked at /sys/class/backlight/
I've got 3 directories inside :
acpi_video0 acpi_video1 intel_backlight
If I modify the brightness with the GUI tool it will modify (let's say I put it to 8):
/sys/class/backlight/acpi_video1/actual_brightness
/sys/class/backlight/acpi_video1/brightness
If I do 'echo 3 > /sys/class/backlight/acpi_video0/brightness' it will modify the screen brightness.
Both
/sys/class/backlight/acpi_video0/actual_brightness
/sys/class/backlight/acpi_video0/brightness
will be at 3.
However
/sys/class/backlight/acpi_video1/actual_brightness
/sys/class/backlight/acpi_video1/brightness
will still be at 8
Then, as soon as I open the GUI tool it will set the brightness back to the value stored in /sys/class/backlight/acpi_video1/brightness
Now, I see that I can play with this settings to get the brightness I want.
But what I want is that each time my computer restart or reboot
it keeps the brightness I set before stoping it.
Thanks.