Browse Source

Create bootspeak

Speak the IP address of Brooklyn every time it starts up via audio port.
main
Scare Crowe 3 years ago committed by GitHub
parent
commit
2c3fa0ca89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      bootspeak

7
bootspeak

@ -0,0 +1,7 @@
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
espeak "Welcome to Brooklyn. My I.P. is $_IP. I repeat: $_IP"
else
espeak "Welcome to Brooklyn. No I.P. found."
fi
Loading…
Cancel
Save