kunsis-dotfiles/.config/i3pystatus/screensaver-status.sh

13 lines
153 B
Bash
Raw Permalink Normal View History

2018-08-24 09:26:15 +00:00
#!/bin/bash
OUT="$(xset q | grep timeout | awk '{print $2}')"
2018-08-24 09:26:15 +00:00
if [ "$OUT" = "0" ]
2018-08-24 09:26:15 +00:00
then
echo "OFF"
exit 1
else
echo "${OUT}s"
exit 0
fi