Created
December 9, 2019 08:49
-
-
Save userhooke/8d23dd714ff8248c982059f521620d94 to your computer and use it in GitHub Desktop.
Remind me to stand up every 45mins. Zenity required
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
while : | |
do | |
for (( i=1; i <= 45; i++ )) | |
do | |
clear | |
echo $((46-i)) "minutes left" | |
sleep 1m | |
done | |
zenity --info --text="You already sitting for 45 minutes. Stand up\!" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment