1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2025-11-03 20:51:16 +08:00

fix(juanghurtado): Changed text color to red when 'root' (#7104)

This commit is contained in:
Vanildo Souto Mangueira 2025-09-01 15:31:29 -03:00 committed by GitHub
parent 10b750af26
commit 28ac0e95da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,8 +34,11 @@ ZSH_THEME_GIT_PROMPT_AHEAD=" %{$RED%}(!)"
ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$WHITE%}[%{$YELLOW%}"
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$WHITE%}]"
USER_COLOR=$GREEN_BOLD
[[ $UID -eq 0 ]] && USER_COLOR=$RED_BOLD
# Prompt format
PROMPT='
%{$GREEN_BOLD%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%}
%{$USER_COLOR%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%}
%{$BLUE%}>%{$RESET_COLOR%} '
RPROMPT='%{$GREEN_BOLD%}$(git_current_branch)$(git_prompt_short_sha)$(git_prompt_status)%{$RESET_COLOR%}'