This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/themes/rixius.zsh-theme

25 lines
839 B
Plaintext
Raw Normal View History

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