Allow theming to be disabled (eg for old terminals)

* Only load a theme file if `bobby` has been set
 * Only alter `PS1` if `\[\]\[$(scm_char)\]\[\]\[$(scm_prompt_info)\]\[\]\[$(rvm_version_prompt)\] \[\]\h \[\]in \[\]\w \[\]\[\n\[\]→\[\] ` has a value
pull/33/head
John Schulz 2010-11-11 11:57:47 -05:00
parent 6c97585329
commit 6e7f423983
2 changed files with 6 additions and 3 deletions

View File

@ -47,8 +47,9 @@ done
unset config_file
export PS1=$PROMPT
if [[ $PROMPT ]]; then
export PS1=$PROMPT
fi
# Adding Support for other OSes
PREVIEW="less"

View File

@ -8,4 +8,6 @@ export GREP_COLOR='1;33'
export LSCOLORS='Gxfxcxdxdxegedabagacad'
# Load the theme
source "$BASH/themes/$BASH_THEME/$BASH_THEME.theme.bash"
if [[ $BASH_THEME ]]; then
source "$BASH/themes/$BASH_THEME/$BASH_THEME.theme.bash"
fi