115a1e554b
vars that will not be recalculated whithout path change : * LP_VCS_TYPE : the type of repository we're in (git / svn / nothing * / ...) * LP_PWD : the (maybe shortened) path * LP_MARK : the prompt mark which depend on the type of repository * we're in * LP_PERM : the color of the colon indicating the permission for the * current directory
53 lines
1.5 KiB
PowerShell
53 lines
1.5 KiB
PowerShell
|
|
#######################################
|
|
# LIQUID PROMPT DEFAULT TEMPLATE FILE #
|
|
#######################################
|
|
|
|
# Available features:
|
|
# LP_BATT battery
|
|
# LP_LOAD load
|
|
# LP_JOBS screen sessions/running jobs/suspended jobs
|
|
# LP_USER user
|
|
# LP_HOST hostname
|
|
# LP_PERM a colon ":"
|
|
# LP_PWD current working directory
|
|
# LP_PROXY HTTP proxy
|
|
# LP_VCS the content of the current repository
|
|
# LP_ERR last error code
|
|
# LP_MARK prompt mark
|
|
# LP_TIME current time
|
|
# LP_PS1_PREFIX user-defined general-purpose prefix (default set a generic prompt as the window title)
|
|
|
|
# Remember that most features come with their corresponding colors,
|
|
# see the README.
|
|
|
|
# add time, jobs, load and battery
|
|
LP_PS1="${LP_PS1_PREFIX}${LP_TIME}${LP_BATT}${LP_LOAD}${LP_JOBS}"
|
|
# add user, host and permissions colon
|
|
LP_PS1="${LP_PS1}[${LP_USER}${LP_HOST}${LP_PERM}"
|
|
|
|
# if not root
|
|
if [[ "$EUID" -ne "0" ]]
|
|
then
|
|
# path in foreground color
|
|
LP_PS1="${LP_PS1}${LP_PWD}]${LP_VENV}${LP_PROXY}"
|
|
# add VCS infos
|
|
LP_PS1="${LP_PS1}${LP_VCS}"
|
|
else
|
|
# path in yellow
|
|
LP_PS1="${LP_PS1}${LP_PWD}]${LP_VENV}${LP_PROXY}"
|
|
# do not add VCS infos unless told otherwise (LP_ENABLE_VCS_ROOT)
|
|
[[ "$LP_ENABLE_VCS_ROOT" = "1" ]] && LP_PS1="${LP_PS1}${LP_VCS}"
|
|
fi
|
|
# add return code and prompt mark
|
|
LP_PS1="${LP_PS1}${LP_ERR}${LP_MARK}"
|
|
|
|
# "invisible" parts
|
|
# Get the current prompt on the fly and make it a title
|
|
LP_TITLE=$(_lp_title $PS1)
|
|
|
|
# Insert it in the prompt
|
|
PS1="${LP_TITLE}${PS1}"
|
|
|
|
# vim: set et sts=4 sw=4 tw=120 ft=sh:
|