blob: cbd8861f9ba2c5c2aaefc78aa60afb92791584da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# This is the default theme for gitprompt.sh
# with removed spacing only necessary on other operating systems
# and username and hostname displayed
override_git_prompt_colors() {
GIT_PROMPT_THEME_NAME="Default Arch"
GIT_PROMPT_SEPARATOR=" "
GIT_PROMPT_STAGED="${Green}…"
GIT_PROMPT_CONFLICTS="${Yellow}✘"
GIT_PROMPT_CHANGED="${Red}Δ"
GIT_PROMPT_UNTRACKED="${Cyan}∃"
GIT_PROMPT_STASHED="${BoldBlack}?"
GIT_PROMPT_SYMBOLS_AHEAD="↑"
GIT_PROMPT_SYMBOLS_BEHIND="↓"
GIT_PROMPT_END_USER=" \n${White}[\u@\h] ${Time12a}${ResetColor} $ "
GIT_PROMPT_END_ROOT=" \n${White}[\u@\h] ${Time12a}${ResetColor} # "
}
reload_git_prompt_colors "Default Arch"
|