Created
January 4, 2023 18:07
-
-
Save tom-on-the-internet/d893486967ea25668381fec3224e20a0 to your computer and use it in GitHub Desktop.
shell timer
This file contains hidden or 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
counter=60; clear; while ((counter >= 0)); do echo $counter | figlet | lolcat; sleep 1; ((counter--)); done; echo Time is up | figlet | lolcat; notify-send 'Guess What?' 'Time is up'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment