#!/bin/sh
# Do not suspend when LCD is turned off

case "$1" in
	hibernate|suspend)
		STATUS=`/usr/local/bin/xrun.sh xset -q | grep -q 'Monitor is On'`
		exit $STATUS
		;;
	thaw|resume) 
		#nothing to do
		;;
	*) exit $NA
		;;
esac
