From 8401e37a4d92b9193229a59a0f5e3ed5430a454a Mon Sep 17 00:00:00 2001 From: Dane Williams Date: Sun, 15 Mar 2020 11:24:52 -0700 Subject: [PATCH] gingel --- dracula.tmux | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dracula.tmux b/dracula.tmux index e146e6f..234b157 100755 --- a/dracula.tmux +++ b/dracula.tmux @@ -37,11 +37,6 @@ main() # message styling tmux set-option -g message-style "bg=${gray},fg=${white}" - # run scripts in background - echo "Loading Weather..." > ~/.tmux/plugins/tmux-dracula/weather.txt & - ./weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt & - ./sleep_weather.sh & - # status bar tmux set-option -g status-style "bg=${gray},fg=${white}" @@ -56,6 +51,8 @@ main() tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${dark_purple}] #I #W " tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W " + ./sleep_weather.sh & + } # run main function