2012-08-14 09:38:33 -04:00
|
|
|
|
|
|
|
####################################
|
|
|
|
# LIQUID PROMPT DEFAULT THEME FILE #
|
|
|
|
####################################
|
|
|
|
|
|
|
|
# Special characters
|
|
|
|
# Be sure to use characters that exists in the font you use. You can use several
|
|
|
|
# characters at once.
|
|
|
|
# Below is an example of how to fallback to ascii if the term is not unicode capable.
|
|
|
|
# Defaults to UTF-8 characters.
|
|
|
|
if [[ "$(locale -k LC_CTYPE | sed -n 's/^charmap="\(.*\)"/\1/p')" == *"UTF-8"* ]] ; then
|
|
|
|
# If charset is UTF-8.
|
2012-08-16 09:22:01 -04:00
|
|
|
LP_MARK_BATTERY="⌁" # in front of the battery charge
|
|
|
|
LP_MARK_ADAPTER="⏚" # displayed when plugged
|
|
|
|
LP_MARK_LOAD="⌂" # in front of the load
|
|
|
|
LP_MARK_PROXY="↥" # indicate a proxy in use
|
|
|
|
LP_MARK_HG="☿" # prompt mark in hg repositories
|
|
|
|
LP_MARK_SVN="‡" # prompt mark in svn repositories
|
|
|
|
LP_MARK_GIT="±" # prompt mark in git repositories
|
2012-08-16 09:51:01 -04:00
|
|
|
LP_MARK_UNTRACKED="*" # if git has untracked files
|
2012-08-14 09:38:33 -04:00
|
|
|
else
|
|
|
|
# If charset is anything else, fallback to ASCII chars
|
2012-08-16 09:22:01 -04:00
|
|
|
LP_MARK_BATTERY="b"
|
|
|
|
LP_MARK_ADAPTER="p"
|
|
|
|
LP_MARK_LOAD="c"
|
|
|
|
LP_MARK_PROXY="^"
|
|
|
|
LP_MARK_HG="m"
|
|
|
|
LP_MARK_SVN="="
|
|
|
|
LP_MARK_GIT="+"
|
|
|
|
LP_MARK_UNTRACKED="*"
|
2012-08-14 09:38:33 -04:00
|
|
|
fi
|
|
|
|
|
2013-01-04 08:08:26 -05:00
|
|
|
# Use the prefix to change the title of the terminal window
|
|
|
|
LP_PS1_PREFIX="\[\e]0;\u@\h: \w\a\]"
|
|
|
|
|
2012-08-14 09:38:33 -04:00
|
|
|
# Colors
|
|
|
|
# Available colors are:
|
|
|
|
# BOLD, BLACK, BOLD_GRAY, WHITE, BOLD_WHITE,
|
|
|
|
# GREEN, BOLD_GREEN, YELLOW, BOLD_YELLOW, BLUE, BOLD_BLUE, PINK, CYAN, BOLD_CYAN
|
|
|
|
# RED, BOLD_RED, WARN_RED, CRIT_RED, DANGER_RED,
|
|
|
|
# Set to a null string "" if you do not want color.
|
|
|
|
|
|
|
|
# Current working directory
|
|
|
|
LP_COLOR_PATH="$BOLD_WHITE" # as normal user
|
|
|
|
LP_COLOR_PATH_ROOT="$BOLD_YELLOW" # as root
|
|
|
|
|
|
|
|
# Color of the proxy mark
|
|
|
|
LP_COLOR_PROXY="$BOLD_BLUE"
|
|
|
|
|
|
|
|
# Jobs count
|
|
|
|
LP_COLOR_JOB_D="$YELLOW" # Detached (aka screen sessions)
|
|
|
|
LP_COLOR_JOB_R="$BOLD_YELLOW" # Running (xterm &)
|
|
|
|
LP_COLOR_JOB_Z="$BOLD_YELLOW" # Sleeping (Ctrl-Z)
|
|
|
|
|
|
|
|
# Last error code
|
|
|
|
LP_COLOR_ERR="$PURPLE"
|
|
|
|
|
|
|
|
# Prompt mark
|
|
|
|
LP_COLOR_MARK="$BOLD_WHITE" # as user
|
|
|
|
LP_COLOR_MARK_ROOT="$BOLD_RED" # as root
|
|
|
|
|
|
|
|
# Current user
|
|
|
|
LP_COLOR_USER_LOGGED="" # user who logged in
|
|
|
|
LP_COLOR_USER_ALT="$BOLD" # user but not the one who logged in
|
|
|
|
LP_COLOR_USER_ROOT="$BOLD_YELLOW" # root
|
|
|
|
|
|
|
|
# Hostname
|
|
|
|
LP_COLOR_HOST="" # local host
|
2012-09-25 15:09:51 -04:00
|
|
|
LP_COLOR_SSH="$BLUE" # connected via SSH
|
2012-08-14 09:38:33 -04:00
|
|
|
LP_COLOR_TELNET="$WARN_RED" # connected via telnet
|
2012-09-25 15:09:51 -04:00
|
|
|
LP_COLOR_X11_ON="$GREEN" # connected with X11 support
|
|
|
|
LP_COLOR_X11_OFF="$YELLOW" # connected without X11 support
|
2012-08-14 09:38:33 -04:00
|
|
|
|
|
|
|
# Separation mark (aka permiison in the working dir)
|
|
|
|
LP_COLOR_WRITE="$GREEN" # have write permission
|
|
|
|
LP_COLOR_NOWRITE="$RED" # do not have write permission
|
|
|
|
|
|
|
|
# VCS
|
|
|
|
LP_COLOR_UP="$GREEN" # repository is up to date / a push have been made
|
|
|
|
LP_COLOR_COMMITS="$YELLOW" # some commits have not been pushed
|
|
|
|
LP_COLOR_CHANGES="$RED" # there is some changes to commit
|
|
|
|
LP_COLOR_DIFF="$PURPLE" # number of lines impacted by current changes
|
|
|
|
|
|
|
|
# Battery
|
|
|
|
LP_COLOR_CHARGING_ABOVE="$GREEN" # charging and above threshold
|
|
|
|
LP_COLOR_CHARGING_UNDER="$YELLOW" # charging but under threshold
|
|
|
|
LP_COLOR_DISCHARGING_ABOVE="$YELLOW" # discharging but above threshold
|
|
|
|
LP_COLOR_DISCHARGING_UNDER="$RED" # discharging and under threshold
|
|
|
|
|
2012-08-17 10:31:45 -04:00
|
|
|
# Time
|
|
|
|
LP_COLOR_TIME="$BLUE"
|
|
|
|
|
2012-08-14 09:38:33 -04:00
|
|
|
# Color maps (battery and load levels)
|
|
|
|
# Range from 0 (nothing special) to 9 (alert)
|
|
|
|
LP_COLORMAP_0=""
|
|
|
|
LP_COLORMAP_1="$GREEN"
|
|
|
|
LP_COLORMAP_2="$BOLD_GREEN"
|
|
|
|
LP_COLORMAP_3="$YELLOW"
|
|
|
|
LP_COLORMAP_4="$BOLD_YELLOW"
|
|
|
|
LP_COLORMAP_5="$RED"
|
|
|
|
LP_COLORMAP_6="$BOLD_RED"
|
|
|
|
LP_COLORMAP_7="$WARN_RED"
|
|
|
|
LP_COLORMAP_8="$CRIT_RED"
|
|
|
|
LP_COLORMAP_9="$DANGER_RED"
|
|
|
|
|
2012-08-14 09:59:36 -04:00
|
|
|
# vim: set et sts=4 sw=4 tw=120 ft=sh:
|