Brightness for 120 Hz and 144 Hz displays - Brightness for 120 Hz and 144 Hz displays - TUXEDO Computers

  ATTENTION: To use our store you have to activate JavaScript and deactivate script blockers!  
Thank you for your understanding!

Brightness for 120 Hz and 144 Hz displays

The brightness of displays with 120 Hz and 144 Hz can be individually adjusted thanks to a short command. By default it is not necessary to execute this command. However, if your display does not have a brightness control, you can do the following.

Variant 1: TUXEDO Installations

It is easiest for devices with TUXEDO installation (ex works or via WebFAI). Open a terminal window, simply via the start menu or Ctrl + Alt + T. There you insert the following command:

sudo sed -i s/'acpi_backlight=vendor'/'i915.enable_dpcd_backlight'/ /etc/default/grubAfter that, automatically regenerate the bootloader settings:

sudo update-grub

Finally, please restart the notebook.

Alternatively, you can combine all three steps:

sudo sed -i s/'acpi_backlight=vendor'/'i915.enable_dpcd_backlight'/ /etc/default/grub && sudo update-grub && sudo reboot

 

Variant 2: Custom Installations

If you have installed your Linux system yourself, please proceed as follows. Open a terminal window, simply via the start menu or Ctrl + Alt + T. Now open an editor with root rights and edit the file /etc/default/grub:

sudo nano /etc/default/grubThe line beginning with GRUB_CMDLINE_LINUX_DEFAULT must look as follows:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi= acpi_os_name=Linux i915.enable_dpcd_backlight"You must therefore add the following to the line:

acpi_osi= acpi_os_name=Linux i915.enable_dpcd_backlightSave your changes with Ctrl + O and exit the editor with Ctrl + X.

Then generate the bootloader and restart the device:

sudo update-grub
sudo reboot