blob: d2f6a00bc208357cbbf28691c99b8b6212a83189 [file] [log] [blame]
Victor Castell76fcb582011-11-05 13:08:34 +01001#!/bin/bash
2SCM_THEME_PROMPT_DIRTY=" ${red}✗"
3SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓"
4SCM_THEME_PROMPT_PREFIX=" |"
5SCM_THEME_PROMPT_SUFFIX="${green}|"
6
7GIT_THEME_PROMPT_DIRTY=" ${red}✗"
8GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓"
9GIT_THEME_PROMPT_PREFIX=" ${green}|"
10GIT_THEME_PROMPT_SUFFIX="${green}|"
11
12function prompt_command() {
Hendrik Mans2e8be862012-01-24 14:31:23 +010013 PS1="\n${yellow}$(ruby_version_prompt) ${purple}\h ${reset_color}in ${green}\w\n${bold_cyan}$(scm_char)${green}$(scm_prompt_info) ${green}→${reset_color} "
Victor Castell76fcb582011-11-05 13:08:34 +010014}
15
16PROMPT_COMMAND=prompt_command;