oh-my-zsh/themes/rixius.zsh-theme

22 lines
789 B
Plaintext
Raw Normal View History

2011-01-14 07:29:24 +00:00
# name in folder (github)
# ± if in github repo, or ≥ if otherwise Time in 24-hour format is on right.
2011-01-14 05:52:41 +00:00
function collapse_pwd {
echo $(pwd | sed -e "s,^$HOME,~,")
}
function prompt_char {
2011-01-14 07:26:31 +00:00
echo -n "%{$bg[white]%}%{$fg[red]%}"
git branch >/dev/null 2>/dev/null && echo "±%{$reset_color%}" && return
echo "≥%{$reset_color%}"
2011-01-14 05:52:41 +00:00
}
2011-01-14 07:26:31 +00:00
RIXIUS_PRE="%{$bg[white]%}%{$fg[red]%}"
2011-01-14 05:52:41 +00:00
2011-01-14 07:26:31 +00:00
PROMPT='
%{$RIXIUS_PRE%}%n%{$reset_color%} in %{$fg_bold[green]%}$(collapse_pwd)%{$reset_color%}$(git_prompt_info)
2011-01-14 05:52:41 +00:00
$(prompt_char) '
2011-01-14 07:26:31 +00:00
RPROMPT='%{$RIXIUS_PRE%}%T%{$reset_color%}'
2011-01-14 05:52:41 +00:00
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
2011-01-14 07:26:31 +00:00
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$RIXIUS_PRE%}!%{$reset_color%}"
2011-01-14 07:31:21 +00:00
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$RIXIUS_PRE%}√%{$reset_color%}"