2022-01-15 19:00:35 +09:00
|
|
|
#! bash oh-my-bash.module
|
2017-10-10 18:07:01 +07:00
|
|
|
|
|
|
|
source "$OSH/themes/doubletime/doubletime.theme.sh"
|
|
|
|
|
2022-01-11 12:40:43 +09:00
|
|
|
function _omb_theme_PROMPT_COMMAND() {
|
2017-10-10 18:07:01 +07:00
|
|
|
# Save history
|
|
|
|
history -a
|
|
|
|
history -c
|
|
|
|
history -r
|
|
|
|
PS1="
|
2022-01-19 16:52:15 +09:00
|
|
|
$(clock_prompt) $(scm_char) [$THEME_PROMPT_HOST_COLOR\u@${THEME_PROMPT_HOST}$_omb_prompt_reset_color] $(_omb_prompt_print_python_venv)$(_omb_prompt_print_ruby_env)
|
2017-10-10 18:07:01 +07:00
|
|
|
\w
|
2022-01-19 16:52:15 +09:00
|
|
|
$(doubletime_scm_prompt)$_omb_prompt_reset_color $ "
|
2017-10-10 18:07:01 +07:00
|
|
|
PS2='> '
|
|
|
|
PS4='+ '
|
|
|
|
}
|
|
|
|
|
2022-01-11 12:40:43 +09:00
|
|
|
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND
|