From b47f8ebc75645554cca367ad28b0eae2b1390df2 Mon Sep 17 00:00:00 2001 From: buffet Date: Tue, 12 Sep 2023 20:19:52 +0200 Subject: [PATCH] bash: switch to prompt with more info --- dots/.bashrc | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/dots/.bashrc b/dots/.bashrc index c2c615b..89f6c22 100644 --- a/dots/.bashrc +++ b/dots/.bashrc @@ -4,8 +4,33 @@ HISTCONTROL=erasedups:ignorespace alias mkdir='mkdir -p' alias rg='rg -S' -PS0='\[\e[0m\]' -PS1='\[\e[1m\] ' - bind '"\C-o": "\C-a\C-k fg; if [[ $? == 1 ]]; then nvim; fi\n"' bind '"\e\C-m": "\C-e | nvim\C-m"' + + +PS0='\[\e[0m\]' +__prompt() { + local status="$?" + + PS1='\[\e[0m\e[1m\][' + + case $status in + 0) PS1+='\[\e[36m\]' ;; + *) PS1+='\[\e[31m\]' ;; + esac + + if [[ "$PWD" = "$HOME" ]]; then + PS1+="~" + elif [[ "$PWD" = / ]]; then + PS1+=/ + else + PS1+="${PWD##*/}" + fi + + PS1+='\[\e[0;1m\]]\[\e[0m\]' + + [[ $DISTROBOX_ENTER_PATH ]] && PS1+="'" + + PS1+=' ' +} +PROMPT_COMMAND=__prompt