1 2 3 4 5 6 7 8 9
#!/usr/bin/env sh if [ "$1" = "on" ] then xset +dpms s 1800 s noblank; elif [ "$1" = "off" ] then xset -dpms s off s noblank; fi