From da4b526c596f99df54a5a6328adc84ce082ad972 Mon Sep 17 00:00:00 2001 From: Mark Szymanski Date: Sun, 17 Oct 2010 14:36:30 -0500 Subject: [PATCH] Fixed bug where everything was bolded after failed command --- themes/minimal/minimal.theme.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/minimal/minimal.theme.bash b/themes/minimal/minimal.theme.bash index a30c629..e70165d 100644 --- a/themes/minimal/minimal.theme.bash +++ b/themes/minimal/minimal.theme.bash @@ -2,7 +2,7 @@ prompt_setter() { if [[ $? -eq 0 ]]; then PS1="\W " else - PS1="${bold_red}\W ${reset_color}" + PS1="${bold_red}\W ${normal}" fi } -- 2.17.1