mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
themes/purity: Apply refactoring in edsonarios
This commit is contained in:
@@ -13,8 +13,12 @@ GIT_THEME_PROMPT_SUFFIX=" ${_omb_prompt_reset_color})"
|
||||
STATUS_THEME_PROMPT_BAD="${_omb_prompt_bold_brown}❯${_omb_prompt_reset_color}${_omb_prompt_normal} "
|
||||
STATUS_THEME_PROMPT_OK="${_omb_prompt_bold_green}❯${_omb_prompt_reset_color}${_omb_prompt_normal} "
|
||||
|
||||
function _omb_theme_PROMPT_COMMAND() {
|
||||
local ret_status="$( [ $? -eq 0 ] && echo -e "$STATUS_THEME_PROMPT_OK" || echo -e "$STATUS_THEME_PROMPT_BAD")"
|
||||
function _omb_theme_PROMPT_COMMAND {
|
||||
if (($? == 0)); then
|
||||
local ret_status=${STATUS_THEME_PROMPT_BAD-}
|
||||
else
|
||||
local ret_status=${STATUS_THEME_PROMPT_OK-}
|
||||
fi
|
||||
PS1="\n${_omb_prompt_navy}\w $(scm_prompt_info)\n${ret_status} "
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user