#!/bin/bash OUT="$(xset q | grep timeout | awk '{print $2}')" if [ "$OUT" = "0" ] then echo "OFF" exit 1 else echo "${OUT}s" exit 0 fi