about summary refs log tree commit diff stats
path: root/pkgs/by-name/br/brightness/brightness.sh
blob: a3f93bfd39a777a6efd1b90191f37b99ed6cd7d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH

help() {
    cat <<EOF
This is a system brightness manager

USAGE:
    $NAME up [VALUE] | down [VALUE]

OPTIONS:
    --help   | -h
                                Output this help and exit.

    --version   | -v
                                Output the version and exit.

COMMANDS:
    set [VALUE]
                                Set the brightness to the specified percentage.

ARGUMENTS:
    VALUE := [[seq 0 100]]
                                The amount to increase/decrease the brightness. In percentage
EOF
}

BACKLIGHT="/sys/class/backlight/%BACKLIGHT_NAME"

brightness() {
    perc="$1"

    max="$(cat $BACKLIGHT/max_brightness)"

    new="$(echo | awk --assign=per="$cur_perc" --assign=perc="$perc" '{printf (perc / 100)}')"

    output="$(echo | awk --assign=new="$new" --assign=max="$max" '{printf max * new}')"

    echo "$output" >"$BACKLIGHT/brightness"
}

for arg in "$@"; do
    case "$arg" in
    "--help" | "-h")
        help
        exit 0
        ;;
    "--version" | "-v")
        version
        exit 0
        ;;
    esac
done

[ "$(id --user)" != 0 ] && die "This script requires root (as it needs to write into '$BACKLIGHT/brightness')"

case "$1" in
"set")
    shift 1

    if [ -n "$1" ]; then
        value="$1"
    else
        die "No value specified"
    fi

    brightness "$value"
    ;;
*)
    die "The command '$1' does not exist! See '--help' for a list"
    ;;
esac

# vim: ft=sh