Umar Ahmad

Fixing Brightness Problems in Linux

You can find the said applications/scripts in my github repository

This is a problem which I faced since the beginning I installed Linux. My system neither recognized my display settings nor those damn shortcut keys (the combination of fn keys) worked , so I ended up getting a dark screen (with zero brightness) every time the system starts-up. I couldn’t even change the brightness with those faulty shortcut keys!!

So the obvious question was:

How the hell did I work with no display?

I worked in recovery mode!! To be honest I started to hate my Fedora ‘cause of that bulgy screen I would get in 800×600 resolution mode. Since I was a noobier noob at that time I decided to work with that. Later I found a silly workaround by “practicing” changing brightness in recovery mode and then “actually” changing brightness without the display on normal mode to get the display :astonished: …Yeah..Lame!

The actual workaround..

I had to find a way to change the brightness of the display by a script of some sort, which can be automated later by a keyboard shortcut or at system start-up.

Method I : Editing the brightness file

I found out that the actual brightness file was

/sys/class/backlight/acpi_video0/brightness

or

/sys/class/backlight/intel_backlight/brightness

and changing them with root access changes the brightness. The problem here was that I wasn’t able to give a script root access without it prompting for a password. I moved the other way since I couldn’t figure that out.

Recently, I figured out the way to give the scripts root access by editing /etc/sudoers/ file and adding

$user ALL=(ALL) NOPASSWD: $path_to_script

where $user is the user-name and $path_to_script is what it says it is!

Method II: Making a Python Script

After some researching I found out about the dbus module of python, which basically could help me get or set the brightness. Using this and a little argument parsing I was successfully able to make a script which changed the brightness. Update: This method doesn’t work on Gnome-Shell v3.10 :worried: . I will update a patch soon.

Method III :Emulating brightness keys with xdotool

The Xdotool can be used to emulate the brightness virtual key xdotool key XF86MonBrightnessUp to increase the brightness and xdotool key XF86MonBrightnessDown to decrease the brightness.

Method IV :Using xbacklight

xbacklight is a tool adjust backlight brightness using RandR extension. It’s the easiest way to change the brightness, without getting into details. It can be installed from the repository by a simple yum or apt-get command. Brightness can be changed using xbacklight inc 10 to increase brightness by 10% and xbacklight dec 10 to decrease the brightness by the same amount.

Method V :When everything else fails…(using xrandr)

Recently one of my friends brought his laptop to me with a problem with similar nature, yet was very different. His brightness keys were fully functional but due to some bug his brightness didn’t change on changing the brightness through the default applet or the keys. On googling about it a bit, I found that it was a known bug with a shell script solution in one of the [comments](https://bugzilla.redhat.com/show_bug.cgi?id=753012# c10) using xrandr. I modified the shell script to make it work with keyboard shortcuts and it solved his problem 8) .

Finally…Adding keyboard shortcut

Once you’ve got your script ready and working you need to automate it using a keyboard shortcut. This can easily be done by Settings>Keyboard>Shortcuts>Custom Shortcuts and add your application (Warning:Your keyboard shortcut shouldn’t overlap with already mapped shortcuts. Example: You can set options such as Ctrl + F3 to increase and Ctrl+F2 to decrease brightness) **Tip:**You can use gconf-editor for advanced options.

Adding Scripts at start-up

If you’re having problems with your default brightness setting i.e. your brightness is either too low or too high or maybe you don’t require a keyboard shortcut, just a way to change script automatically at start-up. You can add applications at start-up without worrying to add keyboard shortcuts like in the previous method.

There are many ways you can add application at start-up they are given here and here but what I find simplest is using gnome-session-properties and simply adding the application. Once you’ve made those changes, you’re ready to feel the magic of automatic brightness.

Joda