diff --git a/usr/share/biglinux/bash-config/bashrc b/usr/share/biglinux/bash-config/bashrc index 8e400a5..c43249a 100644 --- a/usr/share/biglinux/bash-config/bashrc +++ b/usr/share/biglinux/bash-config/bashrc @@ -29,7 +29,10 @@ alias l='ls -CF' # Load Blesh for enhanced interactive shell experience if [[ -f /usr/share/blesh/ble.sh ]] && [[ ! -f ~/.bash-normal ]]; then - source /usr/share/blesh/ble.sh --noattach + # Disable blesh in tty + if [[ $TERM != linux ]]; then + source /usr/share/blesh/ble.sh --noattach + fi #GRC Configuration for colorizing command outputs #GRC_ALIASES=true #GRC="/usr/bin/grc" @@ -139,8 +142,8 @@ fi if [[ ${BLE_VERSION-} ]]; then ble-attach else - # Use in tty - if [[ $TERM == linux ]]; then + + if [[ $TERM = linux ]]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else greenBg="\[\e[48;5;115m\]"