aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/dpms.sh
blob: a7e82f9b6bda426db0bffb1a54f9c70efaa57169 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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 -dpms
  xset s off
else
  notify-send "Error: DPMS command not found."
fi