1 2 3 4 5 6 7 8 9 10
#!/bin/sh xscreensaver-command -watch | while read evt rest; do case "$evt" in UNBLANK) sleep 1 xrandr --output DP-2 --mode 2560x1440 --rate 240 ;; esac done &