diff options
author | Sébastien M-B <essembeh@gmail.com> | 2011-11-16 19:44:02 +0100 |
---|---|---|
committer | Sébastien M-B <essembeh@gmail.com> | 2011-11-16 21:49:04 +0100 |
commit | 8e6ce534a2cfa91d6398fecf42c4149fa1e5294f (patch) | |
tree | 10bd4314236db49e1f926b95f176855b83b11a2c /themes | |
parent | c4434d2ddedd62737ad3f99111ef47d722e2b74e (diff) | |
download | zsh-8e6ce534a2cfa91d6398fecf42c4149fa1e5294f.tar.gz zsh-8e6ce534a2cfa91d6398fecf42c4149fa1e5294f.tar.bz2 zsh-8e6ce534a2cfa91d6398fecf42c4149fa1e5294f.zip |
Update theme
Use different colors in case of root or ssh connection for prompt.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/essembeh.zsh-theme | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/themes/essembeh.zsh-theme b/themes/essembeh.zsh-theme index f9cd6c241..8c98ea1ed 100644 --- a/themes/essembeh.zsh-theme +++ b/themes/essembeh.zsh-theme @@ -11,14 +11,16 @@ function my_git_prompt_info() { echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX" } -LOGIN_COLOR=green -test -n "$SSH_CONNECTION" && LOGIN_COLOR=red -test $UID -eq 0 && LOGIN_COLOR=pink - -PROMPT='%{$fg[$LOGIN_COLOR]%}%B%n@%M:%{$fg[yellow]%}%B%~%{$reset_color%}%b $(my_git_prompt_info)%(!.#.$) ' +# Colored prompt +ZSH_THEME_COLOR_USER="green" +ZSH_THEME_COLOR_HOST="green" +ZSH_THEME_COLOR_PWD="yellow" +test -n "$SSH_CONNECTION" && ZSH_THEME_COLOR_USER="red" && ZSH_THEME_COLOR_HOST="red" +test `id -u` = 0 && ZSH_THEME_COLOR_USER="magenta" && ZSH_THEME_COLOR_HOST="magenta" +PROMPT='%{$fg_bold[$ZSH_THEME_COLOR_USER]%}%n@%{$fg_bold[$ZSH_THEME_COLOR_HOST]%}%M%{$reset_color%}:%{$fg_bold[$ZSH_THEME_COLOR_PWD]%}%~%{$reset_color%} $(my_git_prompt_info)%(!.#.$) ' RPS1="${return_code}" -ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}(" +ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}(" ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}" ZSH_THEME_GIT_PROMPT_UNTRACKED="%%" ZSH_THEME_GIT_PROMPT_ADDED="+" |