I just installed ubuntu 20.04. Backlight control works through the brightness applet and works via hotkeys, but nothing change, the display brightness remains the same. Here's what I've done:
- Modified and updated GRUB file on
/etc/default/grub
fromGRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
toGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
. This did not work. - Create a file (20-intel.conf) on
/usr/share/X11/xorg.conf.d
with this lines:
Section "Device" Identifier "card0" Driver "intel" Option "Backlight" "intel_backlight" BusID "PCI:0:2:0" EndSection
This did not work. - Create a file (80-backlight.conf) on
/usr/share/X11/xorg.conf.d
with this lines:
Section "Device" Identifier "Intel Graphics" Driver "intel" Option "AccelMethod" "sna" Option "Backlight" "intel_backlight" BusID "PCI:0:2:0" EndSection
This did not work.
Then, I noticed my sys/class/backlight
folder has two folders inside, one named acer-wmi and another one named intel_backlight both of them have the files mentioned here such as bl_power
brightness
actual_brightness
max_brightness
type
. If I change the brightness level using both the applet and hotkeys, the actual_brightness
file on acer folder changes (between 0 to 15), but not any file on intel's folder change. Of course, the display brightness remains the same.
After change the grub again with this kernel parameter acpi_osi=Linux
the hotkeys do change the displays brightness, but I still cannot adjust the brightness using the slider, if I do that, the slider works (moves), but nothing changes.
I notice that now on my sys/class/backlight
folder, the acer folder mentioned changed its name for acpi_video0
while Intel's folder remains the same. When I make changes on brightness using the hotkeys, the files on both folders now reflects the changes, but if I use the slider provided by Ubuntu, nothing happen to the display but files on acer's folder change. Just the acer files, not Intel's one. Curious. It's seems like Ubuntu is modifying files but in the incorrect folder.