diff options
-rw-r--r-- | etc/shrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -8,7 +8,10 @@ case "$-" in *i*) if /bin/test -z "${HOST}"; then HOST="$(hostname)" fi - PS1='
]2;$PWD'${HOST%%.*}$PS1 + case "$TERM" in + x*) PS1='
]2;$PWD'${HOST%%.*}$PS1 ;; + *) PS1=${HOST%%.*}$PS1 ;; + esac set -o emacs # This file is used by shells that might not support # set -o tabcomplete, so check before trying to use it. |