blob: 2dcd7e7c11a19c3def417abcc7dfef7430cacdb0 [file] [log] [blame]
Rich Manalang22d25812010-10-07 16:32:06 -07001#!/bin/bash
2
3# prompt themeing
4
5#added TITLEBAR for updating the tab and window titles with the pwd
6case $TERM in
7 xterm*)
8 TITLEBAR="\[\033]0;\w\007\]"
9 ;;
10 *)
11 TITLEBAR=""
12 ;;
13esac
John Schulzd5645e72010-11-09 23:21:19 -050014PROMPT="${TITLEBAR}${orange}${reset_color}${green}\w${bold_blue}\[\$(scm_prompt_info)\]${reset_color} "
Rich Manalang22d25812010-10-07 16:32:06 -070015
16
John Schulzd5645e72010-11-09 23:21:19 -050017# scm themeing
18SCM_THEME_PROMPT_DIRTY=" ✗"
19SCM_THEME_PROMPT_CLEAN=" ✓"
20SCM_THEME_PROMPT_PREFIX="("
21SCM_THEME_PROMPT_SUFFIX=")"