summaryrefslogtreecommitdiff
path: root/config/openbox/xscreensaver-watch
blob: a373c18ea1c060a17b3126f30eeaea4f31ca4b9b (plain)
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 &