mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00
6 lines
216 B
Bash
Executable file
6 lines
216 B
Bash
Executable file
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
|