mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
#! bash oh-my-bash.module
|
|
|
|
# based off of n0qorg
|
|
# looks like, if you're in a git repo:
|
|
# ± ~/path/to (branch ✓) $
|
|
# in glorious red / blue / yellow color scheme
|
|
|
|
function _omb_theme_PROMPT_COMMAND {
|
|
# Save history
|
|
history -a
|
|
history -c
|
|
history -r
|
|
# displays user@server in purple
|
|
# PS1="$_omb_prompt_brown$(scm_char) $_omb_prompt_purple\u@\h$_omb_prompt_reset_color:$_omb_prompt_navy\w$_omb_prompt_olive$(scm_prompt_info)$(_omb_prompt_print_ruby_env) $_omb_prompt_gray\$$_omb_prompt_reset_color "
|
|
# no user@server
|
|
PS1="$_omb_prompt_brown$(scm_char) $_omb_prompt_navy\w$_omb_prompt_olive$(scm_prompt_info)$(_omb_prompt_print_ruby_env) $_omb_prompt_gray\$$_omb_prompt_reset_color "
|
|
PS2='> '
|
|
PS4='+ '
|
|
}
|
|
|
|
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND
|
|
|
|
SCM_NONE_CHAR='·'
|
|
SCM_THEME_PROMPT_DIRTY=" ${_omb_prompt_brown}✗"
|
|
SCM_THEME_PROMPT_CLEAN=" ${_omb_prompt_green}✓"
|
|
SCM_THEME_PROMPT_PREFIX=" ("
|
|
SCM_THEME_PROMPT_SUFFIX="${_omb_prompt_olive})"
|
|
RVM_THEME_PROMPT_PREFIX=" ("
|
|
RVM_THEME_PROMPT_SUFFIX=")"
|