From 3eb1257db0dcc1433e8f60e911454ed517fc3eca Mon Sep 17 00:00:00 2001 From: phreakocious Date: Mon, 25 Mar 2019 09:48:21 -0700 Subject: [PATCH] the custom color functions from bash-it don't escape correctly. fix this for phudj.theme --- themes/phudj/phudj.theme.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/phudj/phudj.theme.bash b/themes/phudj/phudj.theme.bash index 760e5781..0f9a3cdb 100644 --- a/themes/phudj/phudj.theme.bash +++ b/themes/phudj/phudj.theme.bash @@ -15,15 +15,15 @@ color_user="$bold_green" color_host="$green" - color_time="$(echo_color rgb 265 265 265)" + color_time="\[$(echo_color rgb 265 265 265)\]" color_at="$color_time" color_path="$cyan" color_clean="$bold_green" - color_dirty="$(echo_color rgb 255 95 0)" + color_dirty="\[$(echo_color rgb 255 95 0)\]" color_ahead="$bold_yellow" color_behind="$yellow" color_diverge="$bold_white" - color_branch="$(echo_color rgb 0 255 95)" + color_branch="\[$(echo_color rgb 0 255 95)\]" color_success="$bold_green" color_failure="$bold_red"