diff --git a/dracula.tmux b/dracula.tmux index 5f6c8b8..5abe525 100755 --- a/dracula.tmux +++ b/dracula.tmux @@ -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 diff --git a/sleep_weather.sh b/sleep_weather.sh index 195cdf0..e2088e1 100755 --- a/sleep_weather.sh +++ b/sleep_weather.sh @@ -6,7 +6,7 @@ main() { while true do - ./weather.sh + ./weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt sleep 600 done }