Skip to content

Commit

Permalink
Now using tarheel blue for bash prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
trevtrich committed Oct 20, 2017
1 parent cadb306 commit 61cb249
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions bash/colors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ if tput setaf 1 &> /dev/null && [[ $(tput colors) -ge 256 ]] 2>/dev/null; then
BLACK=$(tput setaf 0);
BLUE=$(tput setaf 33);
CYAN=$(tput setaf 37);
TARHEEL=$(tput setaf 39);
GREEN=$(tput setaf 64);
ORANGE=$(tput setaf 166);
PURPLE=$(tput setaf 125);
Expand All @@ -46,6 +47,7 @@ else
BLACK="\033[1;30m";
BLUE="\033[1;34m";
CYAN="\033[1;36m";
TARHEEL="\033[1;39m";
GREEN="\033[0;32m";
ORANGE="\033[0;2;33m";
PURPLE="\033[1;35m";
Expand Down
2 changes: 1 addition & 1 deletion bash/prompt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
bracket_color="\[${WHITE}\]"
colon_color="\[${WHITE}\]"

prompt_color="\[${GREEN}\]"
prompt_color="\[${TARHEEL}\]"

if [[ "$SSH_TTY" ]]; then
# connected via ssh
Expand Down

0 comments on commit 61cb249

Please sign in to comment.