-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_prompt
65 lines (57 loc) · 1.67 KB
/
.bash_prompt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
RED="\[\033[0;31m\]"
LIGHT_RED="\[\033[1;31m\]"
GREEN="\[\033[0;32m\]"
LIGHT_GREEN="\[\033[1;32m\]"
YELLOW="\[\033[0;33m\]"
BOLD_YELLOW="\[\033[1;33m\]"
BLUE="\[\033[0;34m\]"
BOLD_BLUE="\[\033[1;34m\]"
PURPLE="\[\033[0;35m\]"
BOLD_PURPLE="\[\033[1;35m\]"
WHITE="\[\033[0;37m\]"
BOLD_WHITE="\[\033[1;37m\]"
LIGHT_GRAY="\[\033[0;37m\]"
BOLD_LIGHT_BLUE="\[\033[1;94m\]"
COLOR_NONE="\[\e[0m\]"
function parse_git_branch {
git rev-parse --git-dir &> /dev/null
git_status="$(git status 2> /dev/null)"
branch_pattern="On branch ([^${IFS}]*)"
remote_pattern="Your branch is (.*) '"
diverge_pattern="Your branch and (.*) have diverged"
if [[ ! ${git_status} =~ "working tree clean" ]]; then
state="${RED}⚡"
else
remote="${YELLOW}="
fi
# add an else if or two here if you want to get more specific
if [[ ${git_status} =~ ${remote_pattern} ]]; then
if [[ ${BASH_REMATCH[1]} == "ahead of" ]]; then
remote="${YELLOW}🠅"
elif [[ ${BASH_REMATCH[1]} == "behind" ]]; then
remote="${YELLOW}🠇"
fi
fi
if [[ ${git_status} =~ ${diverge_pattern} ]]; then
remote="${YELLOW}🠇🠅"
fi
if [[ ${git_status} =~ ${branch_pattern} ]]; then
branch=${BASH_REMATCH[1]}
echo " (${branch})${remote}${state}"
fi
}
function git_dirty_flag {
git status 2> /dev/null | grep -c : | awk '{if ($1 > 0) print "⚡"}'
}
function prompt_func() {
previous_return_value=$?;
prompt="${TITLEBAR}${BOLD_LIGHT_BLUE}\w${LIGHT_GRAY}$(parse_git_branch)\n "
if test $previous_return_value -eq 0
then
PS1="${prompt}${BOLD_PURPLE}\$${COLOR_NONE} "
else
PS1="${prompt}${RED}\$${COLOR_NONE} "
fi
}
PROMPT_COMMAND=prompt_func