laptop monitor dim

You have a problem with Salix? Post here and we'll do what we can to help.
Post Reply
User avatar
witek
Posts: 233
Joined: 16. Nov 2009, 13:41
Location: Poland.Łódź

laptop monitor dim

Post by witek »

When system startx my laptop monitor is dim. I have to increase brightness with functions keys. Same situation when I switch to terminal with Ctrl+Alt+Fx and when screen saver activates. Any idea how to fix that?

I found that

Code: Select all

echo -n 87 > /proc/acpi/video/VGA/LCDD/brightness
works as root. However neither adding this to rc.local nor adding this to xfce autostart seems to work :(
But then from root console it works.
User avatar
gapan
Salix Wizard
Posts: 6241
Joined: 6. Jun 2009, 17:40

Re: laptop monitor dim

Post by gapan »

Try something like

Code: Select all

sleep 30 && echo -n 87 > /proc/acpi/video/VGA/LCDD/brightness
in rc.local
Image
Image
User avatar
witek
Posts: 233
Joined: 16. Nov 2009, 13:41
Location: Poland.Łódź

Re: laptop monitor dim

Post by witek »

shouldn`t this be rather put in the background?

Code: Select all

(sleep 30 && echo -n 87 > /proc/acpi/video/VGA/LCDD/brightness ) &
User avatar
gapan
Salix Wizard
Posts: 6241
Joined: 6. Jun 2009, 17:40

Re: laptop monitor dim

Post by gapan »

Yep.
Image
Image
Post Reply