Skip to content

Commit

Permalink
themes/purity: Deprecate old configuration names
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Oct 3, 2023
1 parent 51a4595 commit 5b351cb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions themes/purity/purity.theme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ GIT_THEME_PROMPT_CLEAN=" ${_omb_prompt_bold_green}✓${_omb_prompt_normal}"
GIT_THEME_PROMPT_PREFIX="${_omb_prompt_reset_color}( "
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} "
OMB_THEME_PURITY_STATUS_BAD="${_omb_prompt_bold_brown}${_omb_prompt_reset_color}${_omb_prompt_normal} "
OMB_THEME_PURITY_STATUS_OK="${_omb_prompt_bold_green}${_omb_prompt_reset_color}${_omb_prompt_normal} "
_omb_deprecate_deprecate 20000 STATUS_THEME_PROMPT_BAD OMB_THEME_PURITY_STATUS_BAD
_omb_deprecate_deprecate 20000 STATUS_THEME_PROMPT_OK OMB_THEME_PURITY_STATUS_OK

function _omb_theme_PROMPT_COMMAND {
if (($? == 0)); then
local ret_status=${STATUS_THEME_PROMPT_BAD-}
local ret_status=${STATUS_THEME_PROMPT_OK:-${OMB_THEME_PURITY_STATUS_OK-}}
else
local ret_status=${STATUS_THEME_PROMPT_OK-}
local ret_status=${STATUS_THEME_PROMPT_BAD:-${OMB_THEME_PURITY_STATUS_BAD-}}
fi
PS1="\n${_omb_prompt_navy}\w $(scm_prompt_info)\n${ret_status} "
}
Expand Down

0 comments on commit 5b351cb

Please sign in to comment.