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}" tmux set-option -g message-style "bg=${gray},fg=${white}"
# run scripts in background # run scripts in background
./sleep_weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt & ./sleep_weather.sh &
#./internet.sh > internet.txt & #./internet.sh > internet.txt &
# status bar # status bar

View file

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