Added option to change the powerline seperators from
the tmux config file
This commit is contained in:
parent
46ee6f75a4
commit
b8e8f6913c
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue