I use "xbacklight" to change the amplification of my screen.

I have the following code in my ".bashrc" file:

function light () {
    if [ $# == 1 ]; then
        xbacklight -steps 1 -set $1
    elif [ $# == 0 ]; then
        xbacklight
    fi
}

Reply via email to