upadte zsh prompt

This commit is contained in:
mwiegand 2022-06-01 13:04:45 +02:00
parent 3cddebee11
commit 8b2d8d974e

View file

@ -21,15 +21,20 @@ function spwd {
echo echo
} }
if test "$EUID" -eq 0 function root_color {
then if test "$EUID" -eq 0
local root_color="%{$fg_bold[red]%}" then
else echo "%{$fg_bold[red]%}"
local root_color="%{$fg_bold[green]%}" else
fi echo "%{$fg_bold[green]%}"
fi
}
local indicator="$root_color$(whoami)%{$fg_bold[black]%}@%(?:%{$fg_bold[green]%}:%{$fg_bold[red]%})$(hostname -s)" function exitcode_color {
PROMPT='${indicator} %{$fg[cyan]%}$(spwd)%{$reset_color%} $(git_prompt_info)' echo "%(?:%{$fg_bold[green]%}:%{$fg_bold[red]%})"
}
PROMPT='$(root_color)$(whoami)%{$reset_color%}@$(exitcode_color)$(hostname -s) %{$fg[cyan]%}$(spwd)%{$reset_color%} $(git_prompt_info)'
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}" ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "