dotfiles/bin/screen-blank.sh

7 lines
216 B
Bash
Raw Normal View History

2017-07-08 01:04:51 +02:00
DUR="$(xset q | grep Standby | cut -d' ' -f4)"
xset s off
case $DUR in
7200) xset dpms 900 900 900;echo "Screen blank set to 15 mins.";;
*) xset dpms 7200 7200 7200;echo "Screen blank set to 2 hours.";;
esac