diff --git a/INSTALL.md b/INSTALL.md index 8165ece..aa4fdd3 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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` diff --git a/scripts/dracula.sh b/scripts/dracula.sh index a607471..9ecd9c5 100755 --- a/scripts/dracula.sh +++ b/scripts/dracula.sh @@ -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