blob: 1ead4832f762dbc42d707f4fc04fe2382e4426c7 [file] [log] [blame]
#!/bin/bash
PROMPT="${bold_blue}\[\$(prompt_char)\]\[\$(git_prompt_info)\] ${orange}\h ${reset_color}in ${green}\w ${reset_color}\[→ "
# git theming
GIT_THEME_PROMPT_DIRTY=" ${red}✗"
GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓"
GIT_THEME_PROMPT_PREFIX=" ${green}|"
GIT_THEME_PROMPT_SUFFIX="${green}|"
# GIT_THEME_PROMPT_DIRTY=" ✗"
# GIT_THEME_PROMPT_CLEAN=" ✓"
# GIT_THEME_PROMPT_PREFIX=" |"
# GIT_THEME_PROMPT_SUFFIX="|"
#added TITLEBAR for updating the tab and window titles with the pwd
case $TERM in
xterm*)
TITLEBAR='\[\033]0;\w\007\]'
;;
*)
TITLEBAR=""
;;
esac