diff --git a/edorrington.zsh-theme.zsh b/edorrington.zsh-theme.zsh index a4bcceb..f69c754 100644 --- a/edorrington.zsh-theme.zsh +++ b/edorrington.zsh-theme.zsh @@ -1,4 +1,11 @@ -PROMPT='%n@%m %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} %{$reset_color%} %F{cyan}%~%f %F{red}❯%F{yellow}❯%F{green}❯%f ' +case "`uname`" in + FreeBSD) + PROMPT='%n@%m %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} %{$reset_color%} %F{cyan}%~%f %F{red}>%F{yellow}>%F{green}>%f ' + ;; + *) + PROMPT='%n@%m %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} %{$reset_color%} %F{cyan}%~%f %F{red}❯%F{yellow}❯%F{green}❯%f ' + ;; +esac ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"