oBacklight
Menu: Requirement Installation Configuration

Requirement
Installation
- Copy the script to /etc/init.d/
$ sudo cp oBacklight /etc/init.d/ - Add script to your startup sequence.
This how you do it in openSUSE.
$ sudo yast runlevel add service=oBacklight - To start the script either reboot your computer or start the script like this.
$ sudo /etc/init.d/oBacklight.sh start
Configuration
To make this script behave like you want to there are some parameters that must be checked and changed if the script isn’t working out of the box.
- BMT
Sets the Brightness Mode Type. There are currently 3 different types defined in the script.
- ACPIS
Sets correct system ACPI event codes. 3 predefined settings available for now.
Depending on your system the brightness type could differ from default settings. If none of these suggestions work and you have figured out one that does, please let us know and we will put it up here as a help to other users.
News





thanks for your script.
i have dell vostro 3700 anspamb0x@mail.rud used such vals:
brightness down event - 00000087 00000000
brightness up event - 00000086 00000000
battery mode event - 00000080 00000000
BBL="4"
DID="1"
MBV="32"
btw. i think it’ll be better to restore previous brightness val from the file (after reboot)
Hi.
Thanks for sharing your settings, i will look into how i can incorporate them into the script.
I will look at the previous brightness restoration and see what can be done.
/Marcus
thanks, this works great on my Sony VPCS11C5E (Vaio S). I had to set BMT=2 and ACPIS=1.
Just one little suggestion. I’m running ArchLinux and there is no /etc/init.d/, instead all init scripts are in /etc/rc.d/.
“/etc/rc.d/oBacklight start” fails because you start “/etc/init.d/oBacklight run &” in start(). I replaced it with “$0 run &”, which imho makes more sense and should work for everyone ($0 is the path to the script itself).
Hi.
Thanks for your reply and input, will absolutely check that out.
/Marcus