optimisation: use built-in time vars \t and %*

This commit is contained in:
François Schmidts 2013-01-25 13:17:05 +01:00
parent 5b247e3d82
commit 33dc6547d7

View File

@ -53,12 +53,14 @@ if test -n "$BASH_VERSION" -a -n "$PS1" -a -n "$TERM" ; then
_LP_CLOSE_ESC="\]"
_LP_USER_SYMBOL="\u"
_LP_HOST_SYMBOL="\h"
_LP_TIME_SYMBOL="\\\\t"
elif test -n "$ZSH_VERSION" ; then
_LP_WORKING_SHELL=zsh
_LP_OPEN_ESC="%{"
_LP_CLOSE_ESC="%}"
_LP_USER_SYMBOL="%n"
_LP_HOST_SYMBOL="%m"
_LP_TIME_SYMBOL="%*"
else
echo "liquidprompt: shell not supported" >&2
return
@ -1182,7 +1184,7 @@ _lp_sb()
_lp_time()
{
[[ "$LP_ENABLE_TIME" != 1 ]] && return
echo -ne "${LP_COLOR_TIME}$(date +%H:%M:%S)${NO_COL}"
echo -ne "${LP_COLOR_TIME}${_LP_TIME_SYMBOL}${NO_COL}"
}
########################