Skip to content

Instantly share code, notes, and snippets.

@mattd
Last active August 9, 2023 20:08
Show Gist options
  • Save mattd/1705950a40fe85024201 to your computer and use it in GitHub Desktop.
Save mattd/1705950a40fe85024201 to your computer and use it in GitHub Desktop.
face-time-party-snoozer.sh
#!/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
@brentd
Copy link

brentd commented Feb 1, 2018

Okay

@NormanStevens
Copy link

Sounds good

@VashTS000
Copy link

I understand

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment