Merge pull request #30 from ImperadorSid/border-contrast

Add option to enable high contrast on pane borders
This commit is contained in:
Dane Williams 2020-05-27 11:00:08 -07:00 committed by GitHub
commit d423a0d408
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -23,3 +23,4 @@ Customize the status bar by adding any of these lines to your .tmux.conf as desi
* Switch powerline symbols `set -g @dracula-show-left-sep ` for left and `set -g @dracula-show-right-sep ` for right symbol (can set any symbol you like as seperator)
* Enable military time: `set -g @dracula-military-time true`
* Switch the left smiley icon `set -g @dracula-show-left-icon session` it can accept `session`, `smiley`, or any character.
* Enable high contrast pane border: `set -g @dracula-border-contrast true`

View file

@ -25,6 +25,7 @@ main()
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")
show_border_contrast=$(get_tmux_option "@dracula-border-contrast" false)
# Dracula Color Pallette
white='#f8f8f2'
gray='#44475a'
@ -67,7 +68,12 @@ main()
tmux set-option -g status-right-length 100
# pane border styling
if $show_border_contrast; then
tmux set-option -g pane-active-border-style "fg=${light_purple}"
else
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
fi
tmux set-option -g pane-border-style "fg=${gray}"
# message styling