From b8d646048e80250c0251ad3f839bbf913b35f28b Mon Sep 17 00:00:00 2001 From: nojhan Date: Tue, 17 Jul 2012 11:02:30 +0200 Subject: [PATCH] no space after hostname --- prompt.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prompt.bash b/prompt.bash index 181a94b..c662cd0 100644 --- a/prompt.bash +++ b/prompt.bash @@ -121,11 +121,11 @@ __host_color() if [ "$conn" == "lcl" ] ; then ret="${ret}" # no hostname if local elif [ "$conn" == "ssh" ] ; then - ret="${ret}@${LIGHT_CYAN}\h " + ret="${ret}@${LIGHT_CYAN}\h" elif [ "$conn" == "tel" ] ; then - ret="${ret}@${WARN_RED}\h " + ret="${ret}@${WARN_RED}\h" else - ret="${ret}@\h " + ret="${ret}@\h" fi echo -ne "${ret}${NO_COL}"