dotfiles/.config/i3pystatus/screensaver-status.sh
2018-08-24 11:26:15 +02:00

13 lines
149 B
Bash
Executable file

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