summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authoraura <nw@moneybot.cc>2026-08-14 05:27:37 +0200
committeraura <nw@moneybot.cc>2026-08-14 05:27:37 +0200
commitd50dacf84a541c265d690fee7d707ce5b483e708 (patch)
tree928aa134d72e266dd9e6635caef7834830a246c7 /config
parent13cd5f17559e07d631edc08ec939c0f917ffa8fe (diff)
update thingsHEADmaster
Diffstat (limited to 'config')
-rw-r--r--config/openbox/xscreensaver-watch10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/openbox/xscreensaver-watch b/config/openbox/xscreensaver-watch
new file mode 100644
index 0000000..a373c18
--- /dev/null
+++ b/config/openbox/xscreensaver-watch
@@ -0,0 +1,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 &