terminal-joke-dashboard/run.sh

11 lines
204 B
Bash
Raw Normal View History

2021-08-01 02:40:50 +00:00
#!/bin/bash
while true; do
export joke=$(curl -s -H "Accept: text/plain" https://icanhazdadjoke.com/)
timeout --foreground -vs9 3m watch -tn60 ./dash.sh
2021-08-01 02:40:50 +00:00
if [ $? -eq 0 ]; then
reset
break
fi
done