Skip to content

Commit

Permalink
Merge pull request #565 from akinomyoga/fix564 (Fixes #564)
Browse files Browse the repository at this point in the history
fix(themes/wanelo): localize variable `status`
  • Loading branch information
akinomyoga authored May 2, 2024
2 parents 86efbf1 + f296619 commit 9cfb35c
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions themes/wanelo/wanelo.theme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ GIT_THEME_PROMPT_SUFFIX="${_omb_prompt_green}|"
RVM_THEME_PROMPT_PREFIX="|"
RVM_THEME_PROMPT_SUFFIX="|"

function _omb_theme_PROMPT_COMMAND() {
if [ $? -eq 0 ]; then
status=❤️
else
status=💔
fi
PS1="\n${_omb_prompt_olive}$(_omb_prompt_print_ruby_env) ${_omb_prompt_purple}\h ${_omb_prompt_reset_color}in ${_omb_prompt_green}\w $status \n${_omb_prompt_bold_teal} ${_omb_prompt_navy}|$(clock_prompt)|${_omb_prompt_green}$(scm_prompt_info) ${_omb_prompt_green}${_omb_prompt_reset_color} "
function _omb_theme_PROMPT_COMMAND {
if (($? == 0)); then
local status=❤️
else
local status=💔
fi
PS1="\n${_omb_prompt_olive}$(_omb_prompt_print_ruby_env) "
PS1+="${_omb_prompt_purple}\h ${_omb_prompt_reset_color}in ${_omb_prompt_green}\w $status \n"
PS1+="${_omb_prompt_bold_teal} ${_omb_prompt_navy}|$(clock_prompt)|"
PS1+="${_omb_prompt_green}$(scm_prompt_info) "
PS1+="${_omb_prompt_green}${_omb_prompt_reset_color} "
}

THEME_CLOCK_COLOR=${THEME_CLOCK_COLOR:-"$_omb_prompt_navy"}
Expand Down

0 comments on commit 9cfb35c

Please sign in to comment.