6be32759368f53d7961e8c6208444de462f132b3
[berthome:berthome.git] / force-dpms-standby
1 #!/bin/sh
2 # Author: Nicolas Berthier
3 # Last modified: Tue Aug 31 12:14:59 2010
4 # Comment: Forces the screen to go to standby mode.
5
6 # FIXME: We need to sleep a second here, else it does not work : why ?
7 sleep 1;
8
9 if [ "$1" == "lock" ]; then
10     xscreensaver-command -lock;
11 else
12     xscreensaver-command -activate;
13 fi;
14
15 exec xset dpms force standby;