Allow clock to be formatted

This commit is contained in:
Travis Swicegood
2011-05-30 10:12:51 -05:00
parent ccf4951d17
commit 9623fd442f

View File

@@ -37,8 +37,14 @@ prompt_setter() {
history -a history -a
history -c history -c
history -r history -r
if [[ -z "$THEME_PROMPT_CLOCK_FORMAT" ]]
then
clock="\t"
else
clock=$THEME_PROMPT_CLOCK_FORMAT
fi
PS1=" PS1="
\t $(scm_char) [\[$THEME_PROMPT_HOST_COLOR\]\u@${THEME_PROMPT_HOST}\[$reset_color\]] $(virtualenv_prompt)\w $clock $(scm_char) [\[$THEME_PROMPT_HOST_COLOR\]\u@${THEME_PROMPT_HOST}\[$reset_color\]] $(virtualenv_prompt)\w
$(doubletime_scm_prompt)\[$reset_color\] $ " $(doubletime_scm_prompt)\[$reset_color\] $ "
PS2='> ' PS2='> '
PS4='+ ' PS4='+ '