aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/clear-dpms-state
blob: ce6c99a9f063efb52b1389b159760e634c9e1fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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