Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tom-on-the-internet/d893486967ea25668381fec3224e20a0 to your computer and use it in GitHub Desktop.
Save tom-on-the-internet/d893486967ea25668381fec3224e20a0 to your computer and use it in GitHub Desktop.
shell timer
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