blob: bf46280eed3705860c2857ff3dc7e690c7c32c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/local/bin/dash
while true; do
clear
# figlet -s -L -c -t "Joe will be right back" | lolcat -F 0.05
figlet -s -L -c -t "Joe will be right back"
echo
# figlet -s -L -c -t "please stand by..." | lolcat -F 0.05
figlet -s -L -c -t "please stand by..."
sleep 5
done
|