blob: 0c45f5bd9cd8f0ac3ae58fa9c3372981fb21c7b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/usr/local/bin/dash
randcol() {
col=$(shuf -i 1-9 -n1)
pri="[1;3${col}m"
printf "\033%s" "$pri"
}
nocol() {
printf "\033[0m"
}
while true; do
clear
printf "\n"
randcol
figlet -s -L -c -t \
-d "$XDG_PACKAGE_HOME"/stream_figfonts \
-f banner3_d \
"Joe will be right back"
printf "\n\n"
nocol
icat "$HOME"/pics/profile/caco.png -w 52 -x 62 -m 24bit
printf "\033[1;36m\n"
figlet -s -L -c -t \
-d "$XDG_PACKAGE_HOME"/stream_figfonts \
-f $(ls "$XDG_PACKAGE_HOME"/stream_figfonts |
tr '.' '\t' |
awk '{print $1}' |
shuf -n 1) \
"please stand by..."
nocol
sleep 10
done
# vim: filetype=sh
|