Added option to change the powerline seperators from

the tmux config file
This commit is contained in:
Uttarayan Mondal 2020-05-21 21:28:33 +05:30
parent 46ee6f75a4
commit b8e8f6913c

View file

@ -23,7 +23,8 @@ main()
show_powerline=$(get_tmux_option "@dracula-show-powerline" false) show_powerline=$(get_tmux_option "@dracula-show-powerline" false)
show_left_icon=$(get_tmux_option "@dracula-show-left-icon" smiley) show_left_icon=$(get_tmux_option "@dracula-show-left-icon" smiley)
show_military=$(get_tmux_option "@dracula-military-time" false) show_military=$(get_tmux_option "@dracula-military-time" false)
show_left_sep=$(get_tmux_option "@dracula-show-left-sep")
show_right_sep=$(get_tmux_option "@dracula-show-right-sep")
# Dracula Color Pallette # Dracula Color Pallette
white='#f8f8f2' white='#f8f8f2'
gray='#44475a' gray='#44475a'
@ -47,8 +48,8 @@ main()
esac esac
if $show_powerline; then if $show_powerline; then
right_sep='' right_sep="$show_right_sep"
left_sep='' left_sep="$show_left_sep"
fi fi
# start weather script in background # start weather script in background
if $show_weather; then if $show_weather; then