Merge pull request #33 from ethancedwards8/master
Fixed 'session' option
This commit is contained in:
commit
ea5229c694
2 changed files with 4 additions and 2 deletions
|
@ -22,5 +22,5 @@ Customize the status bar by adding any of these lines to your .tmux.conf as desi
|
|||
* Enable powerline symbols: `set -g @dracula-show-powerline true`
|
||||
* 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.
|
||||
* Switch the left smiley icon `set -g @dracula-show-left-icon session` it can accept `session`, `smiley`, `window`, or any character.
|
||||
* Enable high contrast pane border: `set -g @dracula-border-contrast true`
|
||||
|
|
|
@ -43,7 +43,9 @@ main()
|
|||
smiley)
|
||||
left_icon="☺ ";;
|
||||
session)
|
||||
left_icon="#W ";;
|
||||
left_icon="#S ";;
|
||||
window)
|
||||
left_icon="#W ";;
|
||||
*)
|
||||
left_icon=$show_left_icon;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue