commit 48856be346f3a19cd6647ce3160f26d4e235cf6b parent 46e30949cc1124ed6a61b114e069ecc74183e810 Author: mcol <mcol@posteo.net> Date: Sat, 9 Feb 2019 12:51:35 +0000 made tmux indicator just the point symbol Diffstat:
M | themes/ban.zsh-theme | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/themes/ban.zsh-theme b/themes/ban.zsh-theme @@ -128,11 +128,13 @@ prompt_tmux() { local tmux_indicator if [[ -n "$TMUX" ]] then - tmux_indicator=$'\ue0b0' + local SEGMENT_SEPARATOR_L=$'\ue0b0' + tmux_indicator=$'' else tmux_indicator='' fi - [[ -n "$tmux_indicator" ]] && prompt_segment magenta 11 "$tmux_indicator" + #[[ -n "$tmux_indicator" ]] && prompt_segment magenta 11 "$tmux_indicator" + prompt_segment 11 magenta "$tmux_indicator" }