aboutsummaryrefslogtreecommitdiff
path: root/bin/linux/setbright
blob: 42cd48f0b44b6302a2c0c7d66b0690093df01e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

set -euo pipefail

current=$(brightnessctl -m info | cut -d, -f4 | tr --delete '%')
case $1 in
    up)
        increment=$(( 5 - ( current % 5 ) ))
        new=$(( current + increment ))
        if [ $new -gt 100 ]; then
            new=100
        fi
        brightnessctl set $new% > /dev/null 2>&1
        echo $new;;
    down)
        increment=$(( ( ( current - 1 ) % 5 ) + 1 ))
        new=$(( current - increment ))
        if [ $new -lt 0 ]; then
            new=0
        fi
        brightnessctl set $new% > /dev/null 2>&1
        echo $new;;
esac