blob: 39e16a1c38c7add65de61641c6e03e290416a0c2 [file] [log] [blame]
Eitan Adler3fc60b52012-04-17 00:24:58 -04001#!/usr/bin/env bash
Rich Manalang22d25812010-10-07 16:32:06 -07002
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=")"