From 4d4f7970368fc923f79b61e0f777082a0c5023ea Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Thu, 3 Sep 2020 09:39:44 -0300 Subject: [PATCH] Since I'm using Starship, no need for fancy prompt --- bash/bash_ps1.bash | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 bash/bash_ps1.bash diff --git a/bash/bash_ps1.bash b/bash/bash_ps1.bash deleted file mode 100644 index c5bca4f..0000000 --- a/bash/bash_ps1.bash +++ /dev/null @@ -1,9 +0,0 @@ -FORE_ORANGE="\[$(tput setaf 208)\]" -FORE_PURPLE="\[$(tput setaf 103)\]" -FORE_GREEN="\[$(tput setaf 148)\]" -RESET="\[$(tput sgr0)\]" -git_branch() { - git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \1/' -} -export PS1="${FORE_BOLD}${FORE_PURPLE}\u${FORE_GREEN}\$(git_branch) ${FORE_ORANGE}\w \$${RESET} " -