From 0c4558d2061559610dbcde5cfacee4148857580f Mon Sep 17 00:00:00 2001 From: Ethan Edwards Date: Thu, 28 May 2020 22:44:22 -0400 Subject: [PATCH 1/2] added option for window and fixed session --- scripts/dracula.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dracula.sh b/scripts/dracula.sh index a607471..424c756 100755 --- a/scripts/dracula.sh +++ b/scripts/dracula.sh @@ -43,7 +43,7 @@ main() smiley) left_icon="☺ ";; session) - left_icon="#W ";; + left_icon="#S ";; *) left_icon=$show_left_icon;; esac From d0412b13ada074903410121a5c5027be2c9bc587 Mon Sep 17 00:00:00 2001 From: Ethan Edwards Date: Thu, 28 May 2020 22:46:23 -0400 Subject: [PATCH 2/2] forgot to add dracula file and did the INSTALL.md file --- INSTALL.md | 2 +- scripts/dracula.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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 424c756..9ecd9c5 100755 --- a/scripts/dracula.sh +++ b/scripts/dracula.sh @@ -44,6 +44,8 @@ main() left_icon="☺ ";; session) left_icon="#S ";; + window) + left_icon="#W ";; *) left_icon=$show_left_icon;; esac