Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@progrium
Created July 5, 2022 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save progrium/790e9539e296a0f72f326ec66d327c91 to your computer and use it in GitHub Desktop.
Save progrium/790e9539e296a0f72f326ec66d327c91 to your computer and use it in GitHub Desktop.
#!/bin/sh
apptron app indicator - ./icon.png <<MENU |
Timers
5 seconds
10 seconds
30 seconds
Say Hello
---
Quit
MENU
while read line; do
case $line in
"Say Hello")
echo "Hello there!"
;;
*)
(sleep "${line%% *}" &&
apptron shell notification "Timer" "$line")&
;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment