9th time is the charm

This commit is contained in:
Dane Williams 2020-03-14 22:30:21 -07:00
parent 76e02019db
commit 5fdff265ab
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ main()
tmux set-option -g message-style "bg=${gray},fg=${white}"
# run scripts in background
./sleep_weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt &
./sleep_weather.sh &
#./internet.sh > internet.txt &
# status bar

View File

@ -6,7 +6,7 @@ main()
{
while true
do
./weather.sh
./weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt
sleep 600
done
}