#!/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