gnzh.zsh-theme 1.27 KB
Newer Older
Max Gonzih's avatar
Max Gonzih committed
1
2
3
4
# Based on bira theme

setopt prompt_subst

5
6
7
() {

local PR_USER PR_USER_OP PR_PROMPT PR_HOST
Max Gonzih's avatar
Max Gonzih committed
8
9

# Check the UID
10
if [[ $UID -ne 0 ]]; then # normal user
11
12
13
  PR_USER='%F{green}%n%f'
  PR_USER_OP='%F{green}%#%f'
  PR_PROMPT='%f➤ %f'
14
else # root
15
16
17
  PR_USER='%F{red}%n%f'
  PR_USER_OP='%F{red}%#%f'
  PR_PROMPT='%F{red}➤ %f'
Max Gonzih's avatar
Max Gonzih committed
18
19
20
fi

# Check if we are on SSH or not
21
if [[ -n "$SSH_CLIENT"  ||  -n "$SSH2_CLIENT" ]]; then
22
  PR_HOST='%F{red}%M%f' # SSH
Max Gonzih's avatar
Max Gonzih committed
23
else
24
  PR_HOST='%F{green}%M%f' # no SSH
Max Gonzih's avatar
Max Gonzih committed
25
26
27
fi


28
29
30
31
local return_code="%(?..%F{red}%? ↵%f)"

local user_host="${PR_USER}%F{cyan}@${PR_HOST}"
local current_dir="%B%F{blue}%~%f%b"
32
local rvm_ruby=''
33
34
35
36
37
38
if ${HOME}/.rvm/bin/rvm-prompt &> /dev/null; then # detect user-local rvm installation
  rvm_ruby='%F{red}‹$(${HOME}/.rvm/bin/rvm-prompt i v g s)›%f'
elif which rvm-prompt &> /dev/null; then # detect system-wide rvm installation
  rvm_ruby='%F{red}‹$(rvm-prompt i v g s)›%f'
elif which rbenv &> /dev/null; then # detect Simple Ruby Version Management
  rvm_ruby='%F{red}‹$(rbenv version | sed -e "s/ (set.*$//")›%f'
39
fi
40
local git_branch='$(git_prompt_info)'
Max Gonzih's avatar
Max Gonzih committed
41
42
43

PROMPT="╭─${user_host} ${current_dir} ${rvm_ruby} ${git_branch}
╰─$PR_PROMPT "
44
45
46
47
RPROMPT="${return_code}"

ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}‹"
ZSH_THEME_GIT_PROMPT_SUFFIX="› %f"
Max Gonzih's avatar
Max Gonzih committed
48

49
}