blob: 491a2d61e02cd130a930ed8b9e4f7d3cf6bd02d8 (
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 15
done
|