mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
11 lines
140 B
Plaintext
11 lines
140 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
hidecursor
|
||
|
while true; do
|
||
|
clear
|
||
|
echo
|
||
|
#fortune -s | cowsay -f dragon |lolcat
|
||
|
fortune -s | cowsay |lolcat
|
||
|
sleep 10
|
||
|
done
|