1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-06 00:53:23 +00:00

Don't mess with the Terminal title anymore

This commit is contained in:
Holger Just 2016-09-14 16:37:52 +02:00
parent 0cd2363345
commit 1aa5a96596

View File

@ -194,12 +194,6 @@ export PS1="$PS1$ps1_pwd$ps1_vcs$ps1_ruby \$ "
# Make less more friendly for non-text input files, see lesspipe(1)
[[ -x /usr/bin/lesspipe ]] && eval "$(lesspipe)"
# If this is an xterm set the title to something empty to preserve Terminal.app titles.
case "$TERM" in
xterm*|rxvt*) export PROMPT_COMMAND='echo -ne "\033]0;\007"' ;;
*) ;;
esac
# Enable color support. Don't add ls here, it behaves different on Darwin/BSD.
if [[ -x /usr/bin/dircolors ]]; then eval "$(dircolors -b)"; fi
alias grep='grep --color=auto'