Browse Source

Merge pull request #409 from Bregor/patch-1

Dollar sign instead of percent in unprivileged user prompt (as in real ge
Robby Russell 12 years ago
parent
commit
423d66da5b
1 changed files with 5 additions and 1 deletions
  1. 5 1
      themes/gentoo.zsh-theme

+ 5 - 1
themes/gentoo.zsh-theme

@@ -1,4 +1,8 @@
-PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%#%{$reset_color%} '
+function prompt_char {
+	if [ $UID -eq 0 ]; then echo "#"; else echo $; fi
+}
+
+PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%_$(prompt_char)%{$reset_color%} '
 
 ZSH_THEME_GIT_PROMPT_PREFIX="("
 ZSH_THEME_GIT_PROMPT_SUFFIX=") "