update zsh prompt
This commit is contained in:
parent
35d8d4828b
commit
c8b9a46aad
1 changed files with 9 additions and 3 deletions
|
@ -21,9 +21,15 @@ function spwd {
|
||||||
echo
|
echo
|
||||||
}
|
}
|
||||||
|
|
||||||
local indicator="$(whoami)@$(hostname -s)"
|
if test "$EUID" -eq 0
|
||||||
local ret_status="%(?:%{$fg_bold[green]%}$indicator:%{$fg_bold[red]%}$indicator)"
|
then
|
||||||
PROMPT='${ret_status} %{$fg[cyan]%}$(spwd)%{$reset_color%} $(git_prompt_info)'
|
local root_color="%{$fg_bold[red]%}"
|
||||||
|
else
|
||||||
|
local root_color="%{$fg_bold[green]%}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
local indicator="$root_color$(whoami)%{$fg_bold[black]%}@%(?:%{$fg_bold[green]%}:%{$fg_bold[red]%})$(hostname -s)"
|
||||||
|
PROMPT='${indicator} %{$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%} "
|
||||||
|
|
Loading…
Reference in a new issue