From f5e03894e96a9c652c39314a2575f52f9c47aac2 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 9 Nov 2025 18:53:25 -0500 Subject: revert-to: a6675719f73a332f92c30ff5c4948cda26c0e6e3 --- .local/bin/clear-dpms-state | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 .local/bin/clear-dpms-state (limited to '.local/bin/clear-dpms-state') diff --git a/.local/bin/clear-dpms-state b/.local/bin/clear-dpms-state new file mode 100755 index 0000000..ce6c99a --- /dev/null +++ b/.local/bin/clear-dpms-state @@ -0,0 +1,14 @@ +#!/bin/sh + +# Check if xset is available +if command -v xset > /dev/null; then + # Place all DPMS settings that you want + # to run on awesome-wm startup below: + xset s noblank + xset s noexpose + xset s off off + xset dpms 0 0 0 + xset -dpms +else + notify-send "error: xset binary not found." +fi -- cgit v1.2.3