more cleanup
parent
c1d3117ad1
commit
2800e7eda1
|
|
@ -1,17 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Some Colors
|
||||
BOLD_GREEN='\[\033[1;32m\]'
|
||||
|
||||
GREEN='\[\033[0;32m\]'
|
||||
BOLD_RED='\[\033[1;31m\]'
|
||||
RED='\[\033[0;31m\]'
|
||||
BOLD_BLUE='\[\033[1;34m\]'
|
||||
BLUE='\[\033[0;34m\]'
|
||||
PINK='\[\e[37;1;35m\]'
|
||||
NORMAL='\[\033[00m\]'
|
||||
|
||||
WHITE='\[\033[1;37m\]'
|
||||
BLACK='\[\033[0;30m\]'
|
||||
YELLOW='\[\033[0;33m\]'
|
||||
PURPLE='\[\033[0;35m\]'
|
||||
CYAN='\[\033[0;36m\]'
|
||||
GRAY='\[\033[1;30m\]'
|
||||
NORMAL='\[\033[00m\]'
|
||||
|
||||
LIGHT_BLUE='\[\033[1;34m\]'
|
||||
LIGHT_GREEN='\[\033[1;32m\]'
|
||||
LIGHT_CYAN='\[\033[1;36m\]'
|
||||
|
|
@ -19,16 +20,15 @@ LIGHT_RED='\[\033[1;31m\]'
|
|||
LIGHT_PURPLE='\[\033[1;35m\]'
|
||||
LIGHT_YELLOW='\[\033[1;33m\]'
|
||||
LIGHT_GRAY='\[\033[0;37m\]'
|
||||
YELLOW='\[\033[0;33m\]'
|
||||
PURPLE='\[\033[0;35m\]'
|
||||
CYAN='\[\033[0;36m\]'
|
||||
GRAY='\[\033[1;30m\]'
|
||||
|
||||
# Stole these from Steve Losh
|
||||
# TODO:
|
||||
D=$'\e[37;40m'
|
||||
PINK=$'\e[35;40m'
|
||||
GREEN=$'\e[32;40m'
|
||||
ORANGE=$'\e[33;40m'
|
||||
|
||||
# Stolen from Steve Losh
|
||||
function prompt_char {
|
||||
git branch >/dev/null 2>/dev/null && echo '±' && return
|
||||
hg root >/dev/null 2>/dev/null && echo '☿' && return
|
||||
|
|
|
|||
Loading…
Reference in New Issue