2022-01-15 19:00:35 +09:00
|
|
|
#! bash oh-my-bash.module
|
2017-10-10 18:07:01 +07:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2022-01-11 12:40:43 +09:00
|
|
|
function _omb_theme_PROMPT_COMMAND() {
|
2022-01-19 16:52:15 +09:00
|
|
|
PS1="${TITLEBAR}${_omb_prompt_orange}${_omb_prompt_reset_color}${green}\w${_omb_prompt_bold_blue}\[\$(scm_prompt_info)\]${_omb_prompt_normal} "
|
2017-10-10 18:07:01 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
# scm themeing
|
|
|
|
SCM_THEME_PROMPT_DIRTY=" ✗"
|
|
|
|
SCM_THEME_PROMPT_CLEAN=" ✓"
|
|
|
|
SCM_THEME_PROMPT_PREFIX="("
|
|
|
|
SCM_THEME_PROMPT_SUFFIX=")"
|
|
|
|
|
2022-01-11 12:40:43 +09:00
|
|
|
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND
|