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