summaryrefslogtreecommitdiff
path: root/powermgt
blob: 6585ca2f8ef59bc5a35de59604d939438d879a2c (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

case "$1" in
    off)
        sleep 1; xset s off -dpms
        ;;
    on) sleep 1; xset s on +dpms
        ;;
    *) echo "usage: $0 [on|off]";;
esac