I have an Asus laptop that I installed 12.10 on some time ago. At first, I was unable to change the screen brightness via the keyboard or power management settings, but I was able to fix this by adding "acpi_backlight=vendor" to GRUB_CMDLINE_LINUX_DEFAULT in my GRUB settings. After upgrading to 13.04, this fix no longer works and I'm back to being unable to change the screen brightness. I've tried a fresh install of 13.04 as well, but that didn't solve the problem.
I suppose I should mention that with the "acpi_backlight=vendor" GRUB setting, I have two entries in /sys/class/backlight: "asus_laptop" and "intel_backlight".
When I press the brightness buttons on my keyboard, I see the value in /sys/class/backlight/asus_laptop/brightness changing (this is true for both 12.10 and 13.04). 12.10 would respond to changes in /sys/class/backlight/asus_laptop/brightness by changing my screen brightness. However, the trouble is that 13.04 doesn't respond to changes in that file. It responds to /sys/class/backlight/intel_backlight instead, but the brightness keys on my keyboard are still modifying the file in asus_laptop.
As a result, I can do
and my screen brightness changes accordingly. So I was trying to get the brightness controls to operate on intel_backlight instead of asus_laptop but I couldn't figure it out. It's a little bit frustrating that I am actually capable of changing the screen brightness but I can't configure the brightness controls to operate on the correct backlight :P
Any tips?
I suppose I should mention that with the "acpi_backlight=vendor" GRUB setting, I have two entries in /sys/class/backlight: "asus_laptop" and "intel_backlight".
When I press the brightness buttons on my keyboard, I see the value in /sys/class/backlight/asus_laptop/brightness changing (this is true for both 12.10 and 13.04). 12.10 would respond to changes in /sys/class/backlight/asus_laptop/brightness by changing my screen brightness. However, the trouble is that 13.04 doesn't respond to changes in that file. It responds to /sys/class/backlight/intel_backlight instead, but the brightness keys on my keyboard are still modifying the file in asus_laptop.
As a result, I can do
Code:
sudo echo 10 > /sys/class/backlight/intel_backlight/brightness
Any tips?
Comment