Commit 48856be346f3a19cd6647ce3160f26d4e235cf6b Parent: 46e30949cc1124ed6a61b114e069ecc74183e810 Author: mcol <mcol@posteo.net> Date: 2019-02-09 12:51:35 +0000 Committer: mcol <mcol@posteo.net> Committed: 2019-02-09 12:51:35 +0000 made tmux indicator just the point symbol
themes/ban.zsh-theme Modified
@@ -128,11 +128,13 @@ 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" }