diff --git a/themes/simple.zsh-theme b/themes/simple.zsh-theme index 1f9e3c4..8ff24b9 100644 --- a/themes/simple.zsh-theme +++ b/themes/simple.zsh-theme @@ -1,4 +1,10 @@ -PROMPT="%{$fg[yellow]%}$PCNAME%(!.%{$fg[green]%}.%{$fg[green]%})%~%{$fg_bold[yellow]%}"'$(git_prompt_info)%{$reset_color%} ' +if [[ -z "$(echo $SSH_CLIENT)" ]]; then + PCNAME= +else + PCNAME='@SSH ' +fi + +PROMPT="%{$fg[blue]%}$PCNAME%(!.%{$fg[green]%}.%{$fg[green]%})%~%{$fg_bold[yellow]%}"'$(git_prompt_info)%{$reset_color%} ' ZSH_THEME_GIT_PROMPT_PREFIX="[" ZSH_THEME_GIT_PROMPT_SUFFIX="]"