You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
242 B
Bash

#!/bin/bash
clear=$'\033[2J'
top=$'\033[H'
trap "setterm --cursor on; echo ${clear}; exit; trap -- - SIGINT SIGTERM" SIGTERM SIGINT
echo "${clear}"
while true; do
echo "${top}"
echo -e "$@" | figl
setterm --cursor off
sleep 2
done