From 4e292cb1aecae5ab630acdc4ed5cb3350c440333 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 13 Mar 2007 11:27:15 +0000 Subject: [PATCH] * Remove unnecessary control characters from PS1. svn path=/nixos/trunk/; revision=8275 --- system/etc/profile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/etc/profile.sh b/system/etc/profile.sh index ae29c857294c..16a5efd7f7b3 100644 --- a/system/etc/profile.sh +++ b/system/etc/profile.sh @@ -8,7 +8,7 @@ export FONTCONFIG_FILE=/etc/fonts/fonts.conf PROMPT_COLOR="1;31m" PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]$\[\033[0m\] " if test "x$TERM" == "xxterm"; then - PS1="\033]2;\h:\u:\w\007\033]1;$PS1" + PS1="\033]2;\h:\u:\w\007$PS1" fi if test "$USER" != root; then