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