This commit is contained in:
Dane Williams 2020-03-15 11:49:00 -07:00
parent 8401e37a4d
commit 7e3da16262
1 changed files with 5 additions and 5 deletions

View File

@ -7,11 +7,11 @@ main()
while tmux has-session &> /dev/null
do
./weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt
error=$(cat ~/.tmux/plugins/tmux-dracula/weather.txt | sed -n 2p)
if [ $error = ' "error": {' ]; then
echo "Too Many Requests" > ~/.tmux/plugins/tmux-dracula/weather.txt
break
fi
# error=$(cat ~/.tmux/plugins/tmux-dracula/weather.txt | sed -n 2p)
# if [ $error = ' "error": {' ]; then
# echo "Too Many Requests" > ~/.tmux/plugins/tmux-dracula/weather.txt
# break
# fi
sleep 1000
done
}