From f94b51f3139d35707e23437a1435501837fe4b40 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Mon, 23 Jul 2018 16:17:03 -0400 Subject: [PATCH] switch to powerline-go, it appears to be much faster --- .bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index 35065fb..7d371c2 100644 --- a/.bashrc +++ b/.bashrc @@ -27,9 +27,9 @@ HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " for k in $HOME/bin/*.bash ; do . $k ; done function _update_ps1() { - PS1="$(powerline-shell $?)" + PS1="$(powerline-go -error $?)" } -if [[ $(which powerline-shell 2>/dev/null) && "$TERM" != "linux" && -z $TMUX ]]; then +if [[ $(which powerline-go 2>/dev/null) && "$TERM" != "linux" ]]; then PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND" else PS1='[\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w$(__git_ps1 " (%s)")\[\033[00m\]]\$ '