diff --git a/bootspeak b/bootspeak new file mode 100644 index 0000000000..7a37f42510 --- /dev/null +++ b/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