diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/.bashrc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/home/.bashrc b/home/.bashrc index cc5f089..620ea76 100644 --- a/home/.bashrc +++ b/home/.bashrc | |||
@@ -32,8 +32,6 @@ PS1_COLOR_RED="\[\e[91m\]" | |||
32 | PS1_COLOR_YELLOW="\[\e[33m\]" | 32 | PS1_COLOR_YELLOW="\[\e[33m\]" |
33 | PS1_COLOR_BLUE="\[\e[94m\]" | 33 | PS1_COLOR_BLUE="\[\e[94m\]" |
34 | PS1_COLOR_CYAN="\[\e[96m\]" | 34 | PS1_COLOR_CYAN="\[\e[96m\]" |
35 | PS1_BLINK_ON="\E[5m" | ||
36 | PS1_BLINK_OFF="\E(B\E\m" | ||
37 | 35 | ||
38 | if [[ "$(id -u)" == 0 ]]; then # if root | 36 | if [[ "$(id -u)" == 0 ]]; then # if root |
39 | PS1_COLOR_MAIN=$PS1_COLOR_RED # set main color red | 37 | PS1_COLOR_MAIN=$PS1_COLOR_RED # set main color red |
@@ -73,7 +71,7 @@ parse_git_branch() { | |||
73 | PS1+="$PS1_COLOR_MAIN[$PS1_COLOR_RESET" # [ | 71 | PS1+="$PS1_COLOR_MAIN[$PS1_COLOR_RESET" # [ |
74 | PS1+="\$(parse_git_branch) " # (BRANCH) | 72 | PS1+="\$(parse_git_branch) " # (BRANCH) |
75 | PS1+="$PS1_COLOR_CYAN\w$PS1_COLOR_RESET" # DIR | 73 | PS1+="$PS1_COLOR_CYAN\w$PS1_COLOR_RESET" # DIR |
76 | PS1+="$PS1_COLOR_MAIN] $PS1_BLINK_ON > $PS1_BLINK_OFF $PS1_COLOR_RESET" # ] > | 74 | PS1+="$PS1_COLOR_MAIN] > $PS1_COLOR_RESET" # ] > |
77 | ######################################################################## | 75 | ######################################################################## |
78 | 76 | ||
79 | 77 | ||