User Tools

Site Tools


pages:howtos:linuxunix:screen-brightness

Adjust Screen Brightness

How to adjust screen brightness via shell:

brightnessctl -l # use this to find out the device identifier
brightnessctl -d “intel_backlight” set 100%

vim ~/.bashrc

function screenbrightness() {
    
    BRIGHTNESSLVL="${1}%"
    brightnessctl -d "intel_backlight" set "${BRIGHTNESSLVL}"

} 


~~DISCUSSION~~

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
pages/howtos/linuxunix/screen-brightness.txt · Last modified: 2021/12/09 23:23 by The Thing That Should Not Be