1

The brightness control bar is not in the system settings of Ubuntu 14.04. How to get it there?

enter image description here

Currently I have lowered the brightness of my desktop due to this wonderful solution, but I still want to know how to get it back in that window shown int the screenshot!

1 Answers1

0

First, open terminal by pressing Ctrl+Alt+T and execute following command:

gksudo gedit /etc/default/grub

Navigate to 11th line, there will be GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" line. Add acpi_backlight=vendor next to quite splash so the line would be:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"

Save the file, then run update-grub command to apply change you have made:

sudo update-grub

Finally, restart your system

Liso
  • 15,377
  • 3
  • 51
  • 80