terminal-joke-dashboard/run.sh

12 lines
169 B
Bash
Raw Normal View History

2021-08-01 02:40:50 +00:00
#!/bin/bash
while true; do
2021-08-01 11:34:59 +00:00
export joke=`shuf -n 1 kids-jokes.txt`
2021-08-01 02:40:50 +00:00
timeout --foreground -vs9 5m watch -tn60 ./dash.sh
if [ $? -eq 0 ]; then
reset
break
fi
done