forgot to add dracula file and did the INSTALL.md file

This commit is contained in:
Ethan Edwards 2020-05-28 22:46:23 -04:00
parent 0c4558d206
commit d0412b13ad
2 changed files with 3 additions and 1 deletions

View file

@ -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` * 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) * 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` * 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` * Enable high contrast pane border: `set -g @dracula-border-contrast true`

View file

@ -44,6 +44,8 @@ main()
left_icon="☺ ";; left_icon="☺ ";;
session) session)
left_icon="#S ";; left_icon="#S ";;
window)
left_icon="#W ";;
*) *)
left_icon=$show_left_icon;; left_icon=$show_left_icon;;
esac esac