From 8626f63fc78d7c0997d8ab67b487994f6fa7e8ec Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Thu, 21 Jan 2016 04:40:51 -0600 Subject: [PATCH] simpler prompt 2 --- sh/bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/bashrc b/sh/bashrc index c8d343a..64a7c17 100644 --- a/sh/bashrc +++ b/sh/bashrc @@ -63,7 +63,7 @@ prompt_command_func() else STATUS_COLOR=$PROMPT_FAILURE_COLOR fi; - PS1="ā”Œ $STATUS_COLOR\u@\h$COLOR_RESET \w \nā”” " + PS1="$STATUS_COLOR\u@\h$COLOR_RESET \w > " } export PROMPT_COMMAND="prompt_command_func"