oh-my-bash/themes/doubletime_multiline_pyonly/doubletime_multiline_pyonly.theme.sh
2021-12-27 23:53:16 +09:00

19 lines
398 B
Bash

#!/usr/bin/env bash
source "$OSH/themes/doubletime/doubletime.theme.sh"
function prompt_setter() {
# Save history
history -a
history -c
history -r
PS1="
$(clock_prompt) $(scm_char) [$THEME_PROMPT_HOST_COLOR\u@${THEME_PROMPT_HOST}$reset_color] $(_omb_prompt_print_python_venv)
\w
$(doubletime_scm_prompt)$reset_color $ "
PS2='> '
PS4='+ '
}
safe_append_prompt_command prompt_setter