From 5cdaaded419ba3292b36ed99e27795f4bbe6e01c Mon Sep 17 00:00:00 2001 From: tmont Date: Mon, 21 Apr 2014 09:54:20 -0700 Subject: [PATCH] show host in prompt --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 961110a..b696aff 100644 --- a/.bashrc +++ b/.bashrc @@ -17,7 +17,7 @@ YELLOW="\[\033[1;33m\]" RESET="\[\033[0m\]" function set_bash_prompt() { - PS1="$GREEN\u$RESET:$BLUE\w$MAGENTA$(__git_ps1 " (%s)")$YELLOW ⚡$RESET " + PS1="$GREEN\u@\h$RESET:$BLUE\w$MAGENTA$(__git_ps1 " (%s)")$YELLOW ⚡$RESET " } PROMPT_COMMAND=set_bash_prompt