aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/clear-dpms-state
diff options
context:
space:
mode:
authorkj_sh6042025-11-10 08:37:05 -0500
committerkj_sh6042025-11-10 08:37:05 -0500
commit0812ea28c4add18ef4ee9d8f21fabcae84dd351f (patch)
treea9ed9470ac5f82098b7548cce4220114b6afa448 /.local/bin/clear-dpms-state
parentac5e3fb377492af21ceb5234b5c7b5d3f12e0b6a (diff)
revert-to: 77949a068755ee72d7b5eaf5570cd2cd34a8d222 with changes
Diffstat (limited to '.local/bin/clear-dpms-state')
-rwxr-xr-x.local/bin/clear-dpms-state14
1 files changed, 0 insertions, 14 deletions
diff --git a/.local/bin/clear-dpms-state b/.local/bin/clear-dpms-state
deleted file mode 100755
index ce6c99a..0000000
--- a/.local/bin/clear-dpms-state
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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