1
0
Fork 0
nixos-config/home-manager/roles/signal.sh

33 lines
574 B
Bash
Raw Normal View History

2021-07-26 09:55:22 +00:00
#!/usr/bin/env bash
x=$1
while true; do
if [[ "$x" == "0" ]]; then
exit
fi
if [[ "$x" != "" ]]; then
echo "$x rings left"
x=$(( x - 1 ))
fi
2021-10-08 11:07:30 +00:00
current_seconds=$(date +%-S)
current_minute=$(date +%-M)
2021-07-26 09:55:22 +00:00
if (($current_minute < 30)); then
echo "Next ring at half hour."
sleep_seconds=$(( (29 - $current_minute)*60+ (60 - $current_seconds)))
else
echo "Next ring at full hour."
sleep_seconds=$(( (59 - $current_minute)*60+ (60 - $current_seconds)))
fi
echo "Sleeping for $sleep_seconds seconds."
sleep $sleep_seconds
echo "Ringing Bell"
2021-07-26 09:57:55 +00:00
mpv $HOME/media/audio/bell.opus
2021-07-26 09:55:22 +00:00
done