summaryrefslogtreecommitdiffstats
path: root/.local/bin/brb
blob: cde80bdb45869ebe14729541c792919948f13f93 (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
#!/usr/local/bin/dash

randcol() {
	col=$(shuf -i 1-9 -n1)
	wei=$(shuf -i 0-1 -n1)
	pri="[${wei};3${col}m"
	printf "\033%s" "$pri"
}

nocol() {
	printf "\033[0m"
}

while true; do
	clear
	randcol
	figlet -s -L -c -t \
		-d "$HOME"/.local/packs/figlet-fonts \
		-f Banner3-D \
		"Joe will be right back"
	echo
	nocol
	icat "$HOME"/pics/profile/caco.png -w 80 -x 80
	randcol
	figlet -s -L -c -t \
		-d "$HOME"/.local/packs/figlet-fonts \
		-f broadway_kb \
		"please stand by..."
	sleep 5
done