X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/f00ae4fac6e3924b201684e513a028bb6ed452ad..e6a7e588f9a3abdcdb6cb031dc56ca7795814c50:/dot/bashrc diff --git a/dot/bashrc b/dot/bashrc index 7fa8e3a..8dc678b 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -35,12 +35,13 @@ if [ -t 0 ]; then "") bold="\[$(tput md)\]" unbold="\[$(tput me)\]" ;; *) bold="\[$(tput bold)\]" unbold="\[$(tput sgr0)\]" ;; esac + gitcolour="\[$(tput setaf 6)\]" rccolour="\[$(tput setaf 1)\]" uncolour="\[$(tput op)\]" nl="\[ \]" ;; *) - bold='' unbold='' nl='' rccolour='' uncolour='';; + bold='' unbold='' nl='' gitcolour='' rccolour='' uncolour='';; esac ## Choose the right delimiters. Highlight root prompts specially; @@ -62,19 +63,29 @@ if [ -t 0 ]; then fi ## If this session is insecure then highlight that. - if [ -z "$SSH_CLIENT" ] && - [ "$__mdw_sechost" != "`hostname`" ] - then + if [ -z "$SSH_CLIENT" ] && [ -z "$SCHROOT_CHROOT_NAME" ] && + [ "$__mdw_sechost" != "`hostname`" ] + then sec_l='(' sec_r=')' fi + ## If this is an schroot environment then point this out. + hqual="" + hqual="$hqual${SCHROOT_CHROOT_NAME+/$SCHROOT_CHROOT_NAME}" + ## Build the prompt string. - rc="$unbold$rccolour\$(rc=\$?;case \$rc in 0);;" - rc="$rc*)echo -n \" rc=\$rc\";;esac;exit \$rc)$uncolour$bold" - PS1="$nl$bold$left$sec_l$u\\h$sec_r \\w$rc$marker$right$unbold" + git="" rc="" + if [[ ${BASH_VERSINFO[0]} -ge 4 ]]; then + if type __git_ps1 >/dev/null 2>&1; then + git="$unbold$gitcolour\$(rc=\$?;__git_ps1;exit \$rc)$uncolour$bold" + fi + rc="$unbold$rccolour\$(rc=\$?;case \$rc in 0);;" + rc="$rc*)echo -n \" rc=\$rc\";;esac;exit \$rc)$uncolour$bold" + fi + PS1="$nl$bold$left$sec_l$u\\h$hqual$sec_r \\w$git$rc$marker$right$unbold" PS2="$PS1 $bold>$unbold " unset nl bold unbold left right sec_l sec_r marker - unset rccolour uncolour rc + unset gitcolour rccolour uncolour git rc hqual fi ###-------------------------------------------------------------------------- @@ -386,3 +397,5 @@ fi fi ###----- That's all, folks -------------------------------------------------- + +: