Last active
August 9, 2023 20:08
-
-
Save mattd/1705950a40fe85024201 to your computer and use it in GitHub Desktop.
face-time-party-snoozer.sh
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
#!/bin/bash | |
sayings=( | |
"Okay" | |
"I understand" | |
"Sure, why not" | |
"Thanks for coming" | |
"Sounds good" | |
) | |
while true; do | |
SAYING=${sayings[RANDOM % ${#sayings[@]}]} | |
say -r 300 $SAYING | |
sleep $(((RANDOM % 5 ) + 1)) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I understand