Skip to content

Instantly share code, notes, and snippets.

@andreyuhai
Last active December 18, 2020 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreyuhai/51dc7fab6f3535e1dc3527b80da5a7f6 to your computer and use it in GitHub Desktop.
Save andreyuhai/51dc7fab6f3535e1dc3527b80da5a7f6 to your computer and use it in GitHub Desktop.

How to increase and decrease the backlight on Lenovo Z500 with Ubuntu 20.04

Source

  1. Open /etc/default/grub
  2. Change
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

to

GRUB_CMDLINE_LINUX_DEFAULT="quiet fastboot acpi_osi=Linux acpi_backlight=vendor"

and then you can change the brightness doing

sudo sh -c "echo 2 > /sys/class/backlight/ideapad/brightness"

Here we are using the ideapad symlink not the intel_backlight. At least that's what's worked for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment