From 22d2581f19d8b29710e80fe87c409ef46e69c8b3 Mon Sep 17 00:00:00 2001 From: Rich Manalang Date: Thu, 7 Oct 2010 16:32:06 -0700 Subject: [PATCH] added simple theme --- themes/simple/simple.theme.bash | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 themes/simple/simple.theme.bash diff --git a/themes/simple/simple.theme.bash b/themes/simple/simple.theme.bash new file mode 100644 index 0000000..be28af5 --- /dev/null +++ b/themes/simple/simple.theme.bash @@ -0,0 +1,26 @@ +#!/bin/bash + +# prompt themeing + +#added TITLEBAR for updating the tab and window titles with the pwd +case $TERM in + xterm*) + TITLEBAR="\[\033]0;\w\007\]" + ;; + *) + TITLEBAR="" + ;; +esac +PROMPT="${TITLEBAR}${orange}${reset_color}${green}\w${bold_blue}\$(git_prompt_info)${reset_color} " + + +# git themeing +# 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=")" -- 2.17.1