terminal-joke-dashboard/run.sh
2021-08-01 07:34:59 -04:00

12 lines
169 B
Bash
Executable File

#!/bin/bash
while true; do
export joke=`shuf -n 1 kids-jokes.txt`
timeout --foreground -vs9 5m watch -tn60 ./dash.sh
if [ $? -eq 0 ]; then
reset
break
fi
done