mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
17 lines
306 B
Bash
Executable File
17 lines
306 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
clear=$'\033[2J'
|
|
top=$'\033[H'
|
|
|
|
trap "setterm --cursor on; stty echo; echo ${clear}; exit; trap -- - SIGINT SIGTERM" SIGTERM SIGINT
|
|
|
|
echo "${clear}"
|
|
while true; do
|
|
echo "${top}"
|
|
stty -echo
|
|
setterm --cursor off
|
|
echo -e "$@" | figl | lolcat
|
|
setterm --cursor off
|
|
sleep 2
|
|
done
|