|
|
@ -120,57 +120,67 @@ CURRENT_BG='NONE'
|
|
|
|
# Takes four arguments:
|
|
|
|
# Takes four arguments:
|
|
|
|
# * $1: Name of the function that was orginally invoked (mandatory).
|
|
|
|
# * $1: Name of the function that was orginally invoked (mandatory).
|
|
|
|
# Necessary, to make the dynamic color-overwrite mechanism work.
|
|
|
|
# Necessary, to make the dynamic color-overwrite mechanism work.
|
|
|
|
# * $2: Background color
|
|
|
|
# * $2: A flag if the segment should be joined with the previous one.
|
|
|
|
# * $3: Foreground color
|
|
|
|
# * $3: Background color
|
|
|
|
# * $4: The segment content
|
|
|
|
# * $4: Foreground color
|
|
|
|
# * $5: An identifying icon (must be a key of the icons array)
|
|
|
|
# * $5: The segment content
|
|
|
|
# The latter four can be omitted,
|
|
|
|
# * $6: An identifying icon (must be a key of the icons array)
|
|
|
|
|
|
|
|
# The latter three can be omitted,
|
|
|
|
set_default POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS " "
|
|
|
|
set_default POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS " "
|
|
|
|
left_prompt_segment() {
|
|
|
|
left_prompt_segment() {
|
|
|
|
# Overwrite given background-color by user defined variable for this segment.
|
|
|
|
# Overwrite given background-color by user defined variable for this segment.
|
|
|
|
local BACKGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_BACKGROUND
|
|
|
|
local BACKGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_BACKGROUND
|
|
|
|
local BG_COLOR_MODIFIER=${(P)BACKGROUND_USER_VARIABLE}
|
|
|
|
local BG_COLOR_MODIFIER=${(P)BACKGROUND_USER_VARIABLE}
|
|
|
|
[[ -n $BG_COLOR_MODIFIER ]] && 2="$BG_COLOR_MODIFIER"
|
|
|
|
[[ -n $BG_COLOR_MODIFIER ]] && 3="$BG_COLOR_MODIFIER"
|
|
|
|
|
|
|
|
|
|
|
|
# Overwrite given foreground-color by user defined variable for this segment.
|
|
|
|
# Overwrite given foreground-color by user defined variable for this segment.
|
|
|
|
local FOREGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_FOREGROUND
|
|
|
|
local FOREGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_FOREGROUND
|
|
|
|
local FG_COLOR_MODIFIER=${(P)FOREGROUND_USER_VARIABLE}
|
|
|
|
local FG_COLOR_MODIFIER=${(P)FOREGROUND_USER_VARIABLE}
|
|
|
|
[[ -n $FG_COLOR_MODIFIER ]] && 3="$FG_COLOR_MODIFIER"
|
|
|
|
[[ -n $FG_COLOR_MODIFIER ]] && 4="$FG_COLOR_MODIFIER"
|
|
|
|
|
|
|
|
|
|
|
|
local bg fg
|
|
|
|
local bg fg
|
|
|
|
[[ -n $2 ]] && bg="%K{$2}" || bg="%k"
|
|
|
|
[[ -n "$3" ]] && bg="%K{$3}" || bg="%k"
|
|
|
|
[[ -n $3 ]] && fg="%F{$3}" || fg="%f"
|
|
|
|
[[ -n "$4" ]] && fg="%F{$4}" || fg="%f"
|
|
|
|
if [[ $CURRENT_BG != 'NONE' ]] && ! isSameColor "$2" "$CURRENT_BG"; then
|
|
|
|
|
|
|
|
# Middle segment
|
|
|
|
local joined=$2
|
|
|
|
echo -n "%{$bg%F{$CURRENT_BG}%}$(print_icon 'LEFT_SEGMENT_SEPARATOR')$POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS"
|
|
|
|
if [[ $CURRENT_BG != 'NONE' ]] && ! isSameColor "$3" "$CURRENT_BG"; then
|
|
|
|
elif isSameColor "$CURRENT_BG" "$2"; then
|
|
|
|
echo -n "%{$bg%F{$CURRENT_BG}%}"
|
|
|
|
|
|
|
|
if [[ $joined == false ]]; then
|
|
|
|
|
|
|
|
# Middle segment
|
|
|
|
|
|
|
|
echo -n "$(print_icon 'LEFT_SEGMENT_SEPARATOR')$POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
elif isSameColor "$CURRENT_BG" "$3"; then
|
|
|
|
# Middle segment with same color as previous segment
|
|
|
|
# Middle segment with same color as previous segment
|
|
|
|
# We take the current foreground color as color for our
|
|
|
|
# We take the current foreground color as color for our
|
|
|
|
# subsegment (or the default color). This should have
|
|
|
|
# subsegment (or the default color). This should have
|
|
|
|
# enough contrast.
|
|
|
|
# enough contrast.
|
|
|
|
local complement
|
|
|
|
local complement
|
|
|
|
[[ -n $3 ]] && complement=$3 || complement=$DEFAULT_COLOR
|
|
|
|
[[ -n "$4" ]] && complement="$4" || complement=$DEFAULT_COLOR
|
|
|
|
echo -n "%{$bg%F{$complement}%}$(print_icon 'LEFT_SUBSEGMENT_SEPARATOR')$POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS"
|
|
|
|
echo -n "%{$bg%F{$complement}%}"
|
|
|
|
|
|
|
|
if [[ $joined == false ]]; then
|
|
|
|
|
|
|
|
echo -n "$(print_icon 'LEFT_SUBSEGMENT_SEPARATOR')$POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS"
|
|
|
|
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
else
|
|
|
|
# First segment
|
|
|
|
# First segment
|
|
|
|
echo -n "%{$bg%}$POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS"
|
|
|
|
echo -n "%{$bg%}$POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
local visual_identifier
|
|
|
|
local visual_identifier
|
|
|
|
if [[ -n $5 ]]; then
|
|
|
|
if [[ -n $6 ]]; then
|
|
|
|
visual_identifier="$(print_icon $5)"
|
|
|
|
visual_identifier="$(print_icon $6)"
|
|
|
|
if [[ -n "$visual_identifier" ]]; then
|
|
|
|
if [[ -n "$visual_identifier" ]]; then
|
|
|
|
# Allow users to overwrite the color for the visual identifier only.
|
|
|
|
# Allow users to overwrite the color for the visual identifier only.
|
|
|
|
local visual_identifier_color_variable=POWERLEVEL9K_${(U)1#prompt_}_VISUAL_IDENTIFIER_COLOR
|
|
|
|
local visual_identifier_color_variable=POWERLEVEL9K_${(U)1#prompt_}_VISUAL_IDENTIFIER_COLOR
|
|
|
|
set_default $visual_identifier_color_variable $3
|
|
|
|
set_default $visual_identifier_color_variable $4
|
|
|
|
visual_identifier="%F{${(P)visual_identifier_color_variable}%}$visual_identifier%f"
|
|
|
|
visual_identifier="%F{${(P)visual_identifier_color_variable}%}$visual_identifier%f"
|
|
|
|
# Add an whitespace if we print more than just the visual identifier
|
|
|
|
# Add an whitespace if we print more than just the visual identifier
|
|
|
|
[[ -n $4 ]] && visual_identifier="$visual_identifier "
|
|
|
|
[[ -n "$5" ]] && visual_identifier="$visual_identifier "
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "$visual_identifier%{$fg%}$4$POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS"
|
|
|
|
[[ -n "$5" ]] && echo -n "${visual_identifier}%{$fg%}${5}${POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS}"
|
|
|
|
CURRENT_BG=$2
|
|
|
|
|
|
|
|
|
|
|
|
CURRENT_BG=$3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# End the left prompt, closes the final segment.
|
|
|
|
# End the left prompt, closes the final segment.
|
|
|
@ -190,54 +200,66 @@ CURRENT_RIGHT_BG='NONE'
|
|
|
|
# Takes four arguments:
|
|
|
|
# Takes four arguments:
|
|
|
|
# * $1: Name of the function that was orginally invoked (mandatory).
|
|
|
|
# * $1: Name of the function that was orginally invoked (mandatory).
|
|
|
|
# Necessary, to make the dynamic color-overwrite mechanism work.
|
|
|
|
# Necessary, to make the dynamic color-overwrite mechanism work.
|
|
|
|
# * $2: Background color
|
|
|
|
# * $2: A flag if the segment should be joined with the previous one.
|
|
|
|
# * $3: Foreground color
|
|
|
|
# * $3: Background color
|
|
|
|
# * $4: The segment content
|
|
|
|
# * $4: Foreground color
|
|
|
|
# * $5: An identifying icon (must be a key of the icons array)
|
|
|
|
# * $5: The segment content
|
|
|
|
|
|
|
|
# * $6: An identifying icon (must be a key of the icons array)
|
|
|
|
# No ending for the right prompt segment is needed (unlike the left prompt, above).
|
|
|
|
# No ending for the right prompt segment is needed (unlike the left prompt, above).
|
|
|
|
set_default POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS " "
|
|
|
|
set_default POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS " "
|
|
|
|
right_prompt_segment() {
|
|
|
|
right_prompt_segment() {
|
|
|
|
# Overwrite given background-color by user defined variable for this segment.
|
|
|
|
# Overwrite given background-color by user defined variable for this segment.
|
|
|
|
local BACKGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_BACKGROUND
|
|
|
|
local BACKGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_BACKGROUND
|
|
|
|
local BG_COLOR_MODIFIER=${(P)BACKGROUND_USER_VARIABLE}
|
|
|
|
local BG_COLOR_MODIFIER=${(P)BACKGROUND_USER_VARIABLE}
|
|
|
|
[[ -n $BG_COLOR_MODIFIER ]] && 2="$BG_COLOR_MODIFIER"
|
|
|
|
[[ -n $BG_COLOR_MODIFIER ]] && 3="$BG_COLOR_MODIFIER"
|
|
|
|
|
|
|
|
|
|
|
|
# Overwrite given foreground-color by user defined variable for this segment.
|
|
|
|
# Overwrite given foreground-color by user defined variable for this segment.
|
|
|
|
local FOREGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_FOREGROUND
|
|
|
|
local FOREGROUND_USER_VARIABLE=POWERLEVEL9K_${(U)1#prompt_}_FOREGROUND
|
|
|
|
local FG_COLOR_MODIFIER=${(P)FOREGROUND_USER_VARIABLE}
|
|
|
|
local FG_COLOR_MODIFIER=${(P)FOREGROUND_USER_VARIABLE}
|
|
|
|
[[ -n $FG_COLOR_MODIFIER ]] && 3="$FG_COLOR_MODIFIER"
|
|
|
|
[[ -n $FG_COLOR_MODIFIER ]] && 4="$FG_COLOR_MODIFIER"
|
|
|
|
|
|
|
|
|
|
|
|
local bg fg
|
|
|
|
local bg fg
|
|
|
|
[[ -n $2 ]] && bg="%K{$2}" || bg="%k"
|
|
|
|
[[ -n "$3" ]] && bg="%K{$3}" || bg="%k"
|
|
|
|
[[ -n $3 ]] && fg="%F{$3}" || fg="%f"
|
|
|
|
[[ -n "$4" ]] && fg="%F{$4}" || fg="%f"
|
|
|
|
|
|
|
|
|
|
|
|
if isSameColor "$CURRENT_RIGHT_BG" "$2"; then
|
|
|
|
local joined=$2
|
|
|
|
# Middle segment with same color as previous segment
|
|
|
|
# If CURRENT_RIGHT_BG is "NONE", we are the first right segment.
|
|
|
|
# We take the current foreground color as color for our
|
|
|
|
if [[ $joined == false ]] || [[ "$CURRENT_RIGHT_BG" == "NONE" ]]; then
|
|
|
|
# subsegment (or the default color). This should have
|
|
|
|
if isSameColor "$CURRENT_RIGHT_BG" "$3"; then
|
|
|
|
# enough contrast.
|
|
|
|
# Middle segment with same color as previous segment
|
|
|
|
local complement
|
|
|
|
# We take the current foreground color as color for our
|
|
|
|
[[ -n $3 ]] && complement=$3 || complement=$DEFAULT_COLOR
|
|
|
|
# subsegment (or the default color). This should have
|
|
|
|
echo -n "%F{$complement}$(print_icon 'RIGHT_SUBSEGMENT_SEPARATOR')%f%{$bg%}%{$fg%}$POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS"
|
|
|
|
# enough contrast.
|
|
|
|
else
|
|
|
|
local complement
|
|
|
|
echo -n "%F{$2}$(print_icon 'RIGHT_SEGMENT_SEPARATOR')%f%{$bg%}%{$fg%}$POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS"
|
|
|
|
[[ -n "$4" ]] && complement="$4" || complement=$DEFAULT_COLOR
|
|
|
|
|
|
|
|
echo -n "%F{$complement}$(print_icon 'RIGHT_SUBSEGMENT_SEPARATOR')%f"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
echo -n "%F{$3}$(print_icon 'RIGHT_SEGMENT_SEPARATOR')%f"
|
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
local visual_identifier
|
|
|
|
local visual_identifier
|
|
|
|
if [[ -n $5 ]]; then
|
|
|
|
if [[ -n "$6" ]]; then
|
|
|
|
visual_identifier="$(print_icon $5)"
|
|
|
|
visual_identifier="$(print_icon $6)"
|
|
|
|
if [[ -n "$visual_identifier" ]]; then
|
|
|
|
if [[ -n "$visual_identifier" ]]; then
|
|
|
|
# Allow users to overwrite the color for the visual identifier only.
|
|
|
|
# Allow users to overwrite the color for the visual identifier only.
|
|
|
|
local visual_identifier_color_variable=POWERLEVEL9K_${(U)1#prompt_}_VISUAL_IDENTIFIER_COLOR
|
|
|
|
local visual_identifier_color_variable=POWERLEVEL9K_${(U)1#prompt_}_VISUAL_IDENTIFIER_COLOR
|
|
|
|
set_default $visual_identifier_color_variable $3
|
|
|
|
set_default $visual_identifier_color_variable $4
|
|
|
|
visual_identifier="%F{${(P)visual_identifier_color_variable}%}$visual_identifier%f"
|
|
|
|
visual_identifier="%F{${(P)visual_identifier_color_variable}%}$visual_identifier%f"
|
|
|
|
# Add an whitespace if we print more than just the visual identifier
|
|
|
|
# Add an whitespace if we print more than just the visual identifier
|
|
|
|
[[ -n $4 ]] && visual_identifier=" $visual_identifier"
|
|
|
|
[[ -n "$5" ]] && visual_identifier=" $visual_identifier"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "$4$visual_identifier$POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS%f"
|
|
|
|
echo -n "%{$bg%}%{$fg%}"
|
|
|
|
CURRENT_RIGHT_BG=$2
|
|
|
|
|
|
|
|
|
|
|
|
# Print whitespace only if segment is not joined or first right segment
|
|
|
|
|
|
|
|
[[ $joined == false ]] || [[ "$CURRENT_RIGHT_BG" == "NONE" ]] && echo -n "${POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Print segment content
|
|
|
|
|
|
|
|
[[ -n "$5" ]] && echo -n "${5}${visual_identifier}${POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS}%f"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CURRENT_RIGHT_BG=$3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
################################################################
|
|
|
|
################################################################
|
|
|
@ -254,7 +276,7 @@ prompt_aws() {
|
|
|
|
local aws_profile="$AWS_DEFAULT_PROFILE"
|
|
|
|
local aws_profile="$AWS_DEFAULT_PROFILE"
|
|
|
|
if [[ -n "$aws_profile" ]];
|
|
|
|
if [[ -n "$aws_profile" ]];
|
|
|
|
then
|
|
|
|
then
|
|
|
|
"$1_prompt_segment" "$0" red white "$aws_profile" 'AWS_ICON'
|
|
|
|
"$1_prompt_segment" "$0" "$2" red white "$aws_profile" 'AWS_ICON'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -262,9 +284,16 @@ prompt_aws() {
|
|
|
|
# and display the output of.
|
|
|
|
# and display the output of.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
prompt_custom() {
|
|
|
|
prompt_custom() {
|
|
|
|
local command=POWERLEVEL9K_CUSTOM_$2:u
|
|
|
|
local command=POWERLEVEL9K_CUSTOM_$3:u
|
|
|
|
|
|
|
|
|
|
|
|
"$1_prompt_segment" "${0}_${2:u}" $DEFAULT_COLOR_INVERTED $DEFAULT_COLOR "$(eval ${(P)command})"
|
|
|
|
"$1_prompt_segment" "${0}_${3:u}" "$2" $DEFAULT_COLOR_INVERTED $DEFAULT_COLOR "$(eval ${(P)command})"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# print an icon, if there are background jobs
|
|
|
|
|
|
|
|
prompt_background_jobs() {
|
|
|
|
|
|
|
|
if [[ $(jobs -l | wc -l) -gt 0 ]]; then
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0" "$2" "$DEFAULT_COLOR" "cyan" "$(print_icon 'BACKGROUND_JOBS_ICON')"
|
|
|
|
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
prompt_battery() {
|
|
|
|
prompt_battery() {
|
|
|
@ -357,7 +386,7 @@ prompt_battery() {
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# display prompt_segment
|
|
|
|
# display prompt_segment
|
|
|
|
[[ -n $bat_percent ]] && "$1_prompt_segment" "${0}_${current_state}" "$DEFAULT_COLOR" "${battery_states[$current_state]}" "$message" 'BATTERY_ICON'
|
|
|
|
[[ -n $bat_percent ]] && "$1_prompt_segment" "${0}_${current_state}" "$2" "$DEFAULT_COLOR" "${battery_states[$current_state]}" "$message" 'BATTERY_ICON'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Context: user@hostname (who am I and where am I)
|
|
|
|
# Context: user@hostname (who am I and where am I)
|
|
|
@ -366,9 +395,9 @@ prompt_context() {
|
|
|
|
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
|
|
|
|
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
|
|
|
|
if [[ $(print -P "%#") == '#' ]]; then
|
|
|
|
if [[ $(print -P "%#") == '#' ]]; then
|
|
|
|
# Shell runs as root
|
|
|
|
# Shell runs as root
|
|
|
|
"$1_prompt_segment" "$0_ROOT" "$DEFAULT_COLOR" "yellow" "$USER@%m"
|
|
|
|
"$1_prompt_segment" "$0_ROOT" "$2" "$DEFAULT_COLOR" "yellow" "$USER@%m"
|
|
|
|
else
|
|
|
|
else
|
|
|
|
"$1_prompt_segment" "$0_DEFAULT" "$DEFAULT_COLOR" "011" "$USER@%m"
|
|
|
|
"$1_prompt_segment" "$0_DEFAULT" "$2" "$DEFAULT_COLOR" "011" "$USER@%m"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -394,9 +423,9 @@ prompt_dir() {
|
|
|
|
|
|
|
|
|
|
|
|
local current_icon=''
|
|
|
|
local current_icon=''
|
|
|
|
if [[ $(print -P "%~") == '~'* ]]; then
|
|
|
|
if [[ $(print -P "%~") == '~'* ]]; then
|
|
|
|
"$1_prompt_segment" "$0_HOME" "blue" "$DEFAULT_COLOR" "$current_path" 'HOME_ICON'
|
|
|
|
"$1_prompt_segment" "$0_HOME" "$2" "blue" "$DEFAULT_COLOR" "$current_path" 'HOME_ICON'
|
|
|
|
else
|
|
|
|
else
|
|
|
|
"$1_prompt_segment" "$0_DEFAULT" "blue" "$DEFAULT_COLOR" "$current_path" 'FOLDER_ICON'
|
|
|
|
"$1_prompt_segment" "$0_DEFAULT" "$2" "blue" "$DEFAULT_COLOR" "$current_path" 'FOLDER_ICON'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -406,13 +435,13 @@ prompt_go_version() {
|
|
|
|
go_version=$(go version 2>&1 | sed -E "s/.*(go[0-9.]*).*/\1/")
|
|
|
|
go_version=$(go version 2>&1 | sed -E "s/.*(go[0-9.]*).*/\1/")
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n "$go_version" ]]; then
|
|
|
|
if [[ -n "$go_version" ]]; then
|
|
|
|
"$1_prompt_segment" "$0" "green" "255" "$go_version"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "green" "255" "$go_version"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Command number (in local history)
|
|
|
|
# Command number (in local history)
|
|
|
|
prompt_history() {
|
|
|
|
prompt_history() {
|
|
|
|
"$1_prompt_segment" "$0" "244" "$DEFAULT_COLOR" '%h'
|
|
|
|
"$1_prompt_segment" "$0" "$2" "244" "$DEFAULT_COLOR" '%h'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
prompt_icons_test() {
|
|
|
|
prompt_icons_test() {
|
|
|
@ -421,7 +450,7 @@ prompt_icons_test() {
|
|
|
|
# the next color has enough contrast to read.
|
|
|
|
# the next color has enough contrast to read.
|
|
|
|
local random_color=$((RANDOM % 8))
|
|
|
|
local random_color=$((RANDOM % 8))
|
|
|
|
local next_color=$((random_color+1))
|
|
|
|
local next_color=$((random_color+1))
|
|
|
|
"$1_prompt_segment" "$0" "$random_color" "$next_color" "$key: ${icons[$key]}"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "$random_color" "$next_color" "$key: ${icons[$key]}"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -452,7 +481,7 @@ prompt_ip() {
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0" "cyan" "$DEFAULT_COLOR" "$ip" 'NETWORK_ICON'
|
|
|
|
"$1_prompt_segment" "$0" "$2" "cyan" "$DEFAULT_COLOR" "$ip" 'NETWORK_ICON'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
prompt_load() {
|
|
|
|
prompt_load() {
|
|
|
@ -476,7 +505,7 @@ prompt_load() {
|
|
|
|
FUNCTION_SUFFIX="_NORMAL"
|
|
|
|
FUNCTION_SUFFIX="_NORMAL"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0$FUNCTION_SUFFIX" "$BACKGROUND_COLOR" "$DEFAULT_COLOR" "$load_avg_5min" 'LOAD_ICON'
|
|
|
|
"$1_prompt_segment" "$0$FUNCTION_SUFFIX" "$2" "$BACKGROUND_COLOR" "$DEFAULT_COLOR" "$load_avg_5min" 'LOAD_ICON'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Node version
|
|
|
|
# Node version
|
|
|
@ -484,12 +513,12 @@ prompt_node_version() {
|
|
|
|
local node_version=$(node -v 2>/dev/null)
|
|
|
|
local node_version=$(node -v 2>/dev/null)
|
|
|
|
[[ -z "${node_version}" ]] && return
|
|
|
|
[[ -z "${node_version}" ]] && return
|
|
|
|
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0" "green" "white" "${node_version:1}" 'NODE_ICON'
|
|
|
|
"$1_prompt_segment" "$0" "$2" "green" "white" "${node_version:1}" 'NODE_ICON'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# print a little OS icon
|
|
|
|
# print a little OS icon
|
|
|
|
prompt_os_icon() {
|
|
|
|
prompt_os_icon() {
|
|
|
|
"$1_prompt_segment" "$0" "black" "255" "$OS_ICON"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "black" "255" "$OS_ICON"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# print PHP version number
|
|
|
|
# print PHP version number
|
|
|
@ -498,7 +527,7 @@ prompt_php_version() {
|
|
|
|
php_version=$(php -v 2>&1 | grep -oe "^PHP\s*[0-9.]*")
|
|
|
|
php_version=$(php -v 2>&1 | grep -oe "^PHP\s*[0-9.]*")
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n "$php_version" ]]; then
|
|
|
|
if [[ -n "$php_version" ]]; then
|
|
|
|
"$1_prompt_segment" "$0" "013" "255" "$php_version"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "013" "255" "$php_version"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -543,7 +572,7 @@ prompt_ram() {
|
|
|
|
esac
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0" "yellow" "$DEFAULT_COLOR" "${rendition% }"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "yellow" "$DEFAULT_COLOR" "${rendition% }"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Node version from NVM
|
|
|
|
# Node version from NVM
|
|
|
@ -554,13 +583,20 @@ prompt_nvm() {
|
|
|
|
[[ -z "${node_version}" ]] && return
|
|
|
|
[[ -z "${node_version}" ]] && return
|
|
|
|
[[ "$node_version" =~ "$nvm_default" ]] && return
|
|
|
|
[[ "$node_version" =~ "$nvm_default" ]] && return
|
|
|
|
|
|
|
|
|
|
|
|
$1_prompt_segment "$0" "green" "011" "${node_version:1}" 'NODE_ICON'
|
|
|
|
$1_prompt_segment "$0" "$2" "green" "011" "${node_version:1}" 'NODE_ICON'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# rbenv information
|
|
|
|
# rbenv information
|
|
|
|
prompt_rbenv() {
|
|
|
|
prompt_rbenv() {
|
|
|
|
if [[ -n "$RBENV_VERSION" ]]; then
|
|
|
|
if [[ -n "$RBENV_VERSION" ]]; then
|
|
|
|
"$1_prompt_segment" "$0" "red" "$DEFAULT_COLOR" "$RBENV_VERSION" 'RUBY_ICON'
|
|
|
|
"$1_prompt_segment" "$0" "$2" "red" "$DEFAULT_COLOR" "$RBENV_VERSION" 'RUBY_ICON'
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# print an icon if user is root.
|
|
|
|
|
|
|
|
prompt_root_indicator() {
|
|
|
|
|
|
|
|
if [[ "$UID" -eq 0 ]]; then
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0" "$2" "$DEFAULT_COLOR" "yellow" "$(print_icon 'ROOT_ICON')"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -570,7 +606,7 @@ prompt_rust_version() {
|
|
|
|
rust_version=$(rustc --version 2>&1 | grep -oe "^rustc\s*[^ ]*" | grep -o '[0-9.a-z\\\-]*$')
|
|
|
|
rust_version=$(rustc --version 2>&1 | grep -oe "^rustc\s*[^ ]*" | grep -o '[0-9.a-z\\\-]*$')
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n "$rust_version" ]]; then
|
|
|
|
if [[ -n "$rust_version" ]]; then
|
|
|
|
"$1_prompt_segment" "$0" "208" "$DEFAULT_COLOR" "Rust $rust_version"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "208" "$DEFAULT_COLOR" "Rust $rust_version"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# RSpec test ratio
|
|
|
|
# RSpec test ratio
|
|
|
@ -580,7 +616,7 @@ prompt_rspec_stats() {
|
|
|
|
code_amount=$(ls -1 app/**/*.rb | wc -l)
|
|
|
|
code_amount=$(ls -1 app/**/*.rb | wc -l)
|
|
|
|
tests_amount=$(ls -1 spec/**/*.rb | wc -l)
|
|
|
|
tests_amount=$(ls -1 spec/**/*.rb | wc -l)
|
|
|
|
|
|
|
|
|
|
|
|
build_test_stats "$1" "$0" "$code_amount" "$tests_amount" "RSpec $(print_icon 'TEST_ICON')"
|
|
|
|
build_test_stats "$1" "$0" "$2" "$code_amount" "$tests_amount" "RSpec $(print_icon 'TEST_ICON')"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -592,33 +628,24 @@ prompt_rvm() {
|
|
|
|
local version=$(echo $MY_RUBY_HOME | awk -F'-' '{print $2}')
|
|
|
|
local version=$(echo $MY_RUBY_HOME | awk -F'-' '{print $2}')
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n "$version$gemset" ]]; then
|
|
|
|
if [[ -n "$version$gemset" ]]; then
|
|
|
|
"$1_prompt_segment" "$0" "240" "$DEFAULT_COLOR" "$version$gemset" 'RUBY_ICON'
|
|
|
|
"$1_prompt_segment" "$0" "$2" "240" "$DEFAULT_COLOR" "$version$gemset" 'RUBY_ICON'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Status: (return code, root status, background jobs)
|
|
|
|
# Status: (return code, root status, background jobs)
|
|
|
|
set_default POWERLEVEL9K_STATUS_VERBOSE true
|
|
|
|
set_default POWERLEVEL9K_STATUS_VERBOSE true
|
|
|
|
prompt_status() {
|
|
|
|
prompt_status() {
|
|
|
|
local symbols bg
|
|
|
|
|
|
|
|
symbols=()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if [[ "$POWERLEVEL9K_STATUS_VERBOSE" == true ]]; then
|
|
|
|
if [[ "$POWERLEVEL9K_STATUS_VERBOSE" == true ]]; then
|
|
|
|
if [[ "$RETVAL" -ne 0 ]]; then
|
|
|
|
if [[ "$RETVAL" -ne 0 ]]; then
|
|
|
|
symbols+="%F{226}$RETVAL $(print_icon 'CARRIAGE_RETURN_ICON')%f"
|
|
|
|
"$1_prompt_segment" "$0_ERROR" "$2" "red" "226" "$RETVAL $(print_icon 'CARRIAGE_RETURN_ICON')"
|
|
|
|
bg="red"
|
|
|
|
|
|
|
|
else
|
|
|
|
else
|
|
|
|
symbols+="%F{046}$(print_icon 'OK_ICON')%f"
|
|
|
|
"$1_prompt_segment" "$0_OK" "$2" "$DEFAULT_COLOR" "046" "$(print_icon 'OK_ICON')"
|
|
|
|
bg="black"
|
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
else
|
|
|
|
[[ "$RETVAL" -ne 0 ]] && symbols+="%{%F{red}%}$(print_icon 'FAIL_ICON')%f"
|
|
|
|
if [[ "$RETVAL" -ne 0 ]]; then
|
|
|
|
bg="$DEFAULT_COLOR"
|
|
|
|
"$1_prompt_segment" "$0_ERROR" "$2" "$DEFAULT_COLOR" "red" "$(print_icon 'FAIL_ICON')"
|
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
[[ "$UID" -eq 0 ]] && symbols+="%{%F{yellow}%} $(print_icon 'ROOT_ICON')%f"
|
|
|
|
|
|
|
|
[[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}$(print_icon 'BACKGROUND_JOBS_ICON')%f"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[ -n "$symbols" ]] && "$1_prompt_segment" "$0" "$bg" "white" "$symbols"
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Symfony2-PHPUnit test ratio
|
|
|
|
# Symfony2-PHPUnit test ratio
|
|
|
@ -628,7 +655,7 @@ prompt_symfony2_tests() {
|
|
|
|
code_amount=$(ls -1 src/**/*.php | grep -vc Tests)
|
|
|
|
code_amount=$(ls -1 src/**/*.php | grep -vc Tests)
|
|
|
|
tests_amount=$(ls -1 src/**/*.php | grep -c Tests)
|
|
|
|
tests_amount=$(ls -1 src/**/*.php | grep -c Tests)
|
|
|
|
|
|
|
|
|
|
|
|
build_test_stats "$1" "$0" "$code_amount" "$tests_amount" "SF2 $(print_icon 'TEST_ICON')"
|
|
|
|
build_test_stats "$1" "$0" "$2" "$code_amount" "$tests_amount" "SF2 $(print_icon 'TEST_ICON')"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -637,23 +664,23 @@ prompt_symfony2_version() {
|
|
|
|
if [[ -f app/bootstrap.php.cache ]]; then
|
|
|
|
if [[ -f app/bootstrap.php.cache ]]; then
|
|
|
|
local symfony2_version
|
|
|
|
local symfony2_version
|
|
|
|
symfony2_version=$(grep " VERSION " app/bootstrap.php.cache | sed -e 's/[^.0-9]*//g')
|
|
|
|
symfony2_version=$(grep " VERSION " app/bootstrap.php.cache | sed -e 's/[^.0-9]*//g')
|
|
|
|
"$1_prompt_segment" "$0" "240" "$DEFAULT_COLOR" "$(print_icon 'SYMFONY_ICON') $symfony2_version"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "240" "$DEFAULT_COLOR" "$(print_icon 'SYMFONY_ICON') $symfony2_version"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Show a ratio of tests vs code
|
|
|
|
# Show a ratio of tests vs code
|
|
|
|
build_test_stats() {
|
|
|
|
build_test_stats() {
|
|
|
|
local code_amount="$3"
|
|
|
|
local code_amount="$4"
|
|
|
|
local tests_amount="$4"+0.00001
|
|
|
|
local tests_amount="$5"+0.00001
|
|
|
|
local headline="$5"
|
|
|
|
local headline="$6"
|
|
|
|
|
|
|
|
|
|
|
|
# Set float precision to 2 digits:
|
|
|
|
# Set float precision to 2 digits:
|
|
|
|
typeset -F 2 ratio
|
|
|
|
typeset -F 2 ratio
|
|
|
|
local ratio=$(( (tests_amount/code_amount) * 100 ))
|
|
|
|
local ratio=$(( (tests_amount/code_amount) * 100 ))
|
|
|
|
|
|
|
|
|
|
|
|
(( ratio >= 75 )) && "$1_prompt_segment" "${2}_GOOD" "cyan" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
(( ratio >= 75 )) && "$1_prompt_segment" "${2}_GOOD" "$3" "cyan" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
(( ratio >= 50 && ratio < 75 )) && "$1_prompt_segment" "$2_AVG" "yellow" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
(( ratio >= 50 && ratio < 75 )) && "$1_prompt_segment" "${2}_AVG" "$3" "yellow" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
(( ratio < 50 )) && "$1_prompt_segment" "$2_BAD" "red" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
(( ratio < 50 )) && "$1_prompt_segment" "${2}_BAD" "red" "$3" "$DEFAULT_COLOR" "$headline: $ratio%%"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# System time
|
|
|
|
# System time
|
|
|
@ -663,7 +690,7 @@ prompt_time() {
|
|
|
|
time_format="$POWERLEVEL9K_TIME_FORMAT"
|
|
|
|
time_format="$POWERLEVEL9K_TIME_FORMAT"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0" "$DEFAULT_COLOR_INVERTED" "$DEFAULT_COLOR" "$time_format"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "$DEFAULT_COLOR_INVERTED" "$DEFAULT_COLOR" "$time_format"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# todo.sh: shows the number of tasks in your todo.sh file
|
|
|
|
# todo.sh: shows the number of tasks in your todo.sh file
|
|
|
@ -671,7 +698,7 @@ prompt_todo() {
|
|
|
|
if $(hash todo.sh 2>&-); then
|
|
|
|
if $(hash todo.sh 2>&-); then
|
|
|
|
count=$(todo.sh ls | egrep "TODO: [0-9]+ of ([0-9]+) tasks shown" | awk '{ print $4 }')
|
|
|
|
count=$(todo.sh ls | egrep "TODO: [0-9]+ of ([0-9]+) tasks shown" | awk '{ print $4 }')
|
|
|
|
if [[ "$count" = <-> ]]; then
|
|
|
|
if [[ "$count" = <-> ]]; then
|
|
|
|
"$1_prompt_segment" "$0" "244" "$DEFAULT_COLOR" "$count" 'TODO_ICON'
|
|
|
|
"$1_prompt_segment" "$0" "$2" "244" "$DEFAULT_COLOR" "$count" 'TODO_ICON'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -724,12 +751,10 @@ prompt_vcs() {
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n "$vcs_prompt" ]]; then
|
|
|
|
if [[ -n "$vcs_prompt" ]]; then
|
|
|
|
if [[ "$VCS_WORKDIR_DIRTY" == true ]]; then
|
|
|
|
if [[ "$VCS_WORKDIR_DIRTY" == true ]]; then
|
|
|
|
"$1_prompt_segment" "$0_MODIFIED" "yellow" "$DEFAULT_COLOR"
|
|
|
|
"$1_prompt_segment" "$0_MODIFIED" "$2" "yellow" "$DEFAULT_COLOR" "$vcs_prompt"
|
|
|
|
else
|
|
|
|
else
|
|
|
|
"$1_prompt_segment" "$0" "green" "$DEFAULT_COLOR"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "green" "$DEFAULT_COLOR" "$vcs_prompt"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "$vcs_prompt "
|
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -739,10 +764,10 @@ set_default POWERLEVEL9K_VI_COMMAND_MODE_STRING "NORMAL"
|
|
|
|
prompt_vi_mode() {
|
|
|
|
prompt_vi_mode() {
|
|
|
|
case ${KEYMAP} in
|
|
|
|
case ${KEYMAP} in
|
|
|
|
main|viins)
|
|
|
|
main|viins)
|
|
|
|
"$1_prompt_segment" "$0_INSERT" "$DEFAULT_COLOR" "blue" "$POWERLEVEL9K_VI_INSERT_MODE_STRING"
|
|
|
|
"$1_prompt_segment" "$0_INSERT" "$2" "$DEFAULT_COLOR" "blue" "$POWERLEVEL9K_VI_INSERT_MODE_STRING"
|
|
|
|
;;
|
|
|
|
;;
|
|
|
|
vicmd)
|
|
|
|
vicmd)
|
|
|
|
"$1_prompt_segment" "$0_NORMAL" "$DEFAULT_COLOR" "default" "$POWERLEVEL9K_VI_COMMAND_MODE_STRING"
|
|
|
|
"$1_prompt_segment" "$0_NORMAL" "$2" "$DEFAULT_COLOR" "default" "$POWERLEVEL9K_VI_COMMAND_MODE_STRING"
|
|
|
|
;;
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -753,7 +778,7 @@ prompt_vi_mode() {
|
|
|
|
prompt_virtualenv() {
|
|
|
|
prompt_virtualenv() {
|
|
|
|
local virtualenv_path="$VIRTUAL_ENV"
|
|
|
|
local virtualenv_path="$VIRTUAL_ENV"
|
|
|
|
if [[ -n "$virtualenv_path" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then
|
|
|
|
if [[ -n "$virtualenv_path" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then
|
|
|
|
"$1_prompt_segment" "$0" "blue" "$DEFAULT_COLOR" "($(basename "$virtualenv_path"))"
|
|
|
|
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "($(basename "$virtualenv_path"))"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -766,12 +791,18 @@ build_left_prompt() {
|
|
|
|
defined POWERLEVEL9K_LEFT_PROMPT_ELEMENTS || POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir rbenv vcs)
|
|
|
|
defined POWERLEVEL9K_LEFT_PROMPT_ELEMENTS || POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir rbenv vcs)
|
|
|
|
|
|
|
|
|
|
|
|
for element in "${POWERLEVEL9K_LEFT_PROMPT_ELEMENTS[@]}"; do
|
|
|
|
for element in "${POWERLEVEL9K_LEFT_PROMPT_ELEMENTS[@]}"; do
|
|
|
|
|
|
|
|
# Check if the segment should be joined with the previous one
|
|
|
|
|
|
|
|
local joined=false
|
|
|
|
|
|
|
|
if [[ ${element[-7,-1]} == '_joined' ]]; then
|
|
|
|
|
|
|
|
element="${element[0,-8]}"
|
|
|
|
|
|
|
|
joined=true
|
|
|
|
|
|
|
|
fi
|
|
|
|
# Check if it is a custom command, otherwise interpet it as
|
|
|
|
# Check if it is a custom command, otherwise interpet it as
|
|
|
|
# a prompt.
|
|
|
|
# a prompt.
|
|
|
|
if [[ $element[0,7] =~ "custom_" ]]; then
|
|
|
|
if [[ $element[0,7] =~ "custom_" ]]; then
|
|
|
|
"prompt_custom" "left" $element[8,-1]
|
|
|
|
"prompt_custom" "left" "$joined" $element[8,-1]
|
|
|
|
else
|
|
|
|
else
|
|
|
|
"prompt_$element" "left"
|
|
|
|
"prompt_$element" "left" "$joined"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
@ -780,15 +811,21 @@ build_left_prompt() {
|
|
|
|
|
|
|
|
|
|
|
|
# Right prompt
|
|
|
|
# Right prompt
|
|
|
|
build_right_prompt() {
|
|
|
|
build_right_prompt() {
|
|
|
|
defined POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS || POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status history time)
|
|
|
|
defined POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS || POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator background_jobs history time)
|
|
|
|
|
|
|
|
|
|
|
|
for element in "${POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS[@]}"; do
|
|
|
|
for element in "${POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS[@]}"; do
|
|
|
|
|
|
|
|
# Check if the segment should be joined with the previous one
|
|
|
|
|
|
|
|
local joined=false
|
|
|
|
|
|
|
|
if [[ ${element[-7,-1]} == '_joined' ]]; then
|
|
|
|
|
|
|
|
element="${element[0,-8]}"
|
|
|
|
|
|
|
|
joined=true
|
|
|
|
|
|
|
|
fi
|
|
|
|
# Check if it is a custom command, otherwise interpet it as
|
|
|
|
# Check if it is a custom command, otherwise interpet it as
|
|
|
|
# a prompt.
|
|
|
|
# a prompt.
|
|
|
|
if [[ $element[0,7] =~ "custom_" ]]; then
|
|
|
|
if [[ $element[0,7] =~ "custom_" ]]; then
|
|
|
|
"prompt_custom" "right" $element[8,-1]
|
|
|
|
"prompt_custom" "right" "$joined" $element[8,-1]
|
|
|
|
else
|
|
|
|
else
|
|
|
|
"prompt_$element" "right"
|
|
|
|
"prompt_$element" "right" "$joined"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
}
|
|
|
|