X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/071720407714b311c8ad1666f5d27619011ed2f6..f64c5a1a842e1998e814bfa931f21a376e905485:/dot/bashrc diff --git a/dot/bashrc b/dot/bashrc index f9485c0..8dc678b 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -63,12 +63,16 @@ 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. git="" rc="" if [[ ${BASH_VERSINFO[0]} -ge 4 ]]; then @@ -78,10 +82,10 @@ if [ -t 0 ]; then 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$sec_r \\w$git$rc$marker$right$unbold" + 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 gitcolour rccolour uncolour git rc + unset gitcolour rccolour uncolour git rc hqual fi ###--------------------------------------------------------------------------