Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions scripts/dracula.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ get_tmux_option() {

main()
{
datafile=/tmp/.dracula-tmux-data

# set current directory variable
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

Expand Down Expand Up @@ -130,9 +132,9 @@ main()
# status bar
tmux set-option -g status-style "bg=${gray},fg=${white}"

# wait unit data/weather.txt exists just to avoid errors
# wait unit $datafile exists just to avoid errors
# this should almost never need to wait unless something unexpected occurs
while $show_weather && [ ! -f $current_dir/../data/weather.txt ]; do
while $show_weather && [ ! -f $datafile ]; do
sleep 0.01
done

Expand Down Expand Up @@ -175,7 +177,7 @@ main()
fi

if $show_weather; then # weather
tmux set-option -ga status-right "#[fg=${orange},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${orange}] #(cat $current_dir/../data/weather.txt)"
tmux set-option -ga status-right "#[fg=${orange},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${orange}] #(cat $datafile)"
powerbg=${orange}
fi

Expand Down Expand Up @@ -224,7 +226,7 @@ main()
fi

if $show_weather; then # weather
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat $current_dir/../data/weather.txt) "
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat $datafile) "
fi

if $show_time; then
Expand Down