This commit is contained in:
Michele Bologna 2014-09-17 20:23:26 +02:00
commit 5a1142315a

View file

@ -1,47 +1,49 @@
# Michele Bologna theme # Michele Bologna's theme
# mbologna on GitHub # http://michelebologna.net
#
# This a theme for oh-my-zsh. Features a colored prompt with a right prompt
# containing the git status (if applicable).
# The '%' prompt will be green if last command return value is 0, yellow otherwise.
# The hostname color is based on hostname characters (see below).
# When using as root, the left prompt shows only the hostname in red color.
# #
# reference colors
local GREEN="%{$fg_bold[green]%}"
local RED="%{$fg_bold[red]%}"
local CYAN="%{$fg_bold[cyan]%}"
local YELLOW="%{$fg_bold[yellow]%}"
local BLUE="%{$fg_bold[blue]%}"
local MAGENTA="%{$fg_bold[magenta]%}"
local WHITE="%{$fg_bold[white]%}"
local COLOR_ARRAY local green="%{$fg_bold[green]%}"
COLOR_ARRAY=($GREEN $RED $CYAN $YELLOW $BLUE $MAGENTA $WHITE) local red="%{$fg_bold[red]%}"
local cyan="%{$fg_bold[cyan]%}"
local yellow="%{$fg_bold[yellow]%}"
local blue="%{$fg_bold[blue]%}"
local magenta="%{$fg_bold[magenta]%}"
local white="%{$fg_bold[white]%}"
local reset="%{$reset_color%}"
# color reset local color_array
local RESET_COLOR="%{$reset_color%}" color_array=($green $red $cyan $yellow $blue $magenta $white)
# which color should be applied? local username_normal_color=$white
local USERNAME_NORMAL_COLOR=$WHITE local username_root_color=$red
local USERNAME_ROOT_COLOR=$RED local hostname_root_color=$red
for i in `hostname`; local HOSTNAME_NORMAL_COLOR=$COLOR_ARRAY[$[((#i))%7+1]]
local HOSTNAME_ROOT_COLOR=$RED
local HOSTNAME_COLOR
HOSTNAME_COLOR=%(!.$HOSTNAME_ROOT_COLOR.$HOSTNAME_NORMAL_COLOR)
local CURRENT_DIR_COLOR=$CYAN
# zsh commands # calculating the hostname color with hostname characters
local USERNAME_COMMAND="%n" for i in `hostname`; local hostname_normal_color=$color_array[$[((#i))%7+1]]
local HOSTNAME_COMMAND="%m"
local CURRENT_DIR="%~"
# output: colors + commands local hostname_color
local USERNAME_OUTPUT="%(!..$USERNAME_NORMAL_COLOR$USERNAME_COMMAND$RESET_COLOR@)" hostname_color=%(!.$hostname_root_color.$hostname_normal_color)
local HOSTNAME_OUTPUT="$HOSTNAME_COLOR$HOSTNAME_COMMAND$RESET_COLOR" local current_dir_color=$cyan
local CURRENT_DIR_OUTPUT="$CURRENT_DIR_COLOR$CURRENT_DIR"
local LAST_COMMAND_OUTPUT="%(?.%(!.$RED.$GREEN).$YELLOW)"
# git theming local username_command="%n"
local ZSH_THEME_GIT_PROMPT_PREFIX="(" local hostname_command="%m"
local ZSH_THEME_GIT_PROMPT_SUFFIX="" local current_dir="%~"
local ZSH_THEME_GIT_PROMPT_DIRTY=")$RED*"
local ZSH_THEME_GIT_PROMPT_CLEAN=")"
# wrap all together local username_output="%(!..$username_normal_color$username_command$reset@)"
export PROMPT='$USERNAME_OUTPUT$HOSTNAME_OUTPUT:$CURRENT_DIR_OUTPUT $LAST_COMMAND_OUTPUT%#$RESET_COLOR ' local hostname_output="$hostname_color$hostname_command$reset"
export RPROMPT='%1(j.fg: [%j].) $GREEN$(git_prompt_info)$RESET_COLOR [%@]' local current_dir_output="$current_dir_color$current_dir"
local last_command_output="%(?.%(!.$red.$green).$yellow)"
export ZSH_THEME_GIT_PROMPT_PREFIX="("
export ZSH_THEME_GIT_PROMPT_SUFFIX=""
export ZSH_THEME_GIT_PROMPT_DIRTY=")$red*"
export ZSH_THEME_GIT_PROMPT_CLEAN=")"
export PROMPT='$username_output$hostname_output:$current_dir_output $last_command_output%#$reset '
export RPROMPT='%1(j.fg: [%j].) $green$(git_prompt_info)$reset [%@]'