mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
make fluent prompt less ugly in classic style
This commit is contained in:
parent
d872930c5c
commit
3e0c898e59
2 changed files with 28 additions and 15 deletions
|
@ -230,7 +230,7 @@ fi
|
||||||
# typeset -g POWERLEVEL9K_DIR_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_DIR_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
# typeset -g POWERLEVEL9K_DIR_PREFIX='%fin '
|
# typeset -g POWERLEVEL9K_DIR_PREFIX='%248Fin '
|
||||||
|
|
||||||
# POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons for different directories.
|
# POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons for different directories.
|
||||||
# It must be an array with 3 * N elements. Each triplet consists of:
|
# It must be an array with 3 * N elements. Each triplet consists of:
|
||||||
|
@ -316,7 +316,7 @@ fi
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
# typeset -g POWERLEVEL9K_VCS_PREFIX='%fon '
|
# typeset -g POWERLEVEL9K_VCS_PREFIX='%248Fon '
|
||||||
|
|
||||||
# Show status of repositories of these types. You can add svn and/or hg if you are
|
# Show status of repositories of these types. You can add svn and/or hg if you are
|
||||||
# using them. If you do, your prompt may become slow even when your current directory
|
# using them. If you do, your prompt may become slow even when your current directory
|
||||||
|
@ -385,7 +385,7 @@ fi
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
# typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PREFIX='%ftook '
|
# typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PREFIX='%248Ftook '
|
||||||
|
|
||||||
#######################[ background_jobs: presence of background jobs ]#######################
|
#######################[ background_jobs: presence of background jobs ]#######################
|
||||||
# Don't show the number of background jobs.
|
# Don't show the number of background jobs.
|
||||||
|
@ -422,7 +422,7 @@ fi
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_CONTEXT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_CONTEXT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
# typeset -g POWERLEVEL9K_CONTEXT_PREFIX='%fwith '
|
# typeset -g POWERLEVEL9K_CONTEXT_PREFIX='%248Fwith '
|
||||||
|
|
||||||
###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]###
|
###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]###
|
||||||
# Python virtual environment color.
|
# Python virtual environment color.
|
||||||
|
@ -522,7 +522,7 @@ fi
|
||||||
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_DEFAULT_NAMESPACE=true
|
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_DEFAULT_NAMESPACE=true
|
||||||
|
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
# typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='%fat '
|
# typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='%248Fat '
|
||||||
|
|
||||||
###############################[ public_ip: public IP address ]###############################
|
###############################[ public_ip: public IP address ]###############################
|
||||||
# Public IP color.
|
# Public IP color.
|
||||||
|
@ -559,7 +559,7 @@ fi
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_TIME_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_TIME_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
# typeset -g POWERLEVEL9K_TIME_PREFIX='%fat '
|
# typeset -g POWERLEVEL9K_TIME_PREFIX='%248Fat '
|
||||||
|
|
||||||
# Example of a user-defined prompt segment. Function prompt_example will be called on every
|
# Example of a user-defined prompt segment. Function prompt_example will be called on every
|
||||||
# prompt if `example` prompt segment is added to POWERLEVEL9K_LEFT_PROMPT_ELEMENTS or
|
# prompt if `example` prompt segment is added to POWERLEVEL9K_LEFT_PROMPT_ELEMENTS or
|
||||||
|
|
|
@ -36,6 +36,7 @@ typeset -ri prompt_indent=2
|
||||||
typeset -ra bg_color=(238 236 234)
|
typeset -ra bg_color=(238 236 234)
|
||||||
typeset -ra frame_color=(242 240 238)
|
typeset -ra frame_color=(242 240 238)
|
||||||
typeset -ra sep_color=(244 242 240)
|
typeset -ra sep_color=(244 242 240)
|
||||||
|
typeset -ra prefix_color=(248 246 244)
|
||||||
|
|
||||||
typeset -ra lean_left=(
|
typeset -ra lean_left=(
|
||||||
'' '%31F$extra_icons[1]%B%39F~%b%31F/%B%39Fpowerlevel10k%b%f $prefixes[1]%76F$extra_icons[2]master ⇡2%f '
|
'' '%31F$extra_icons[1]%B%39F~%b%31F/%B%39Fpowerlevel10k%b%f $prefixes[1]%76F$extra_icons[2]master ⇡2%f '
|
||||||
|
@ -48,12 +49,12 @@ typeset -ra lean_right=(
|
||||||
)
|
)
|
||||||
|
|
||||||
typeset -ra classic_left=(
|
typeset -ra classic_left=(
|
||||||
'%$frame_color[$color]F╭─' '%K{$bg_color[$color]} %31F$extra_icons[1]%B%39F~%b%K{$bg_color[$color]}%31F/%B%39Fpowerlevel10k%b%K{$bg_color[$color]} %$sep_color[$color]F\uE0B1%f $prefixes[1]%76F$extra_icons[2]master ⇡2 %k%$bg_color[$color]F\uE0B0%f'
|
'%$frame_color[$color]F╭─' '%K{$bg_color[$color]} %31F$extra_icons[1]%B%39F~%b%K{$bg_color[$color]}%31F/%B%39Fpowerlevel10k%b%K{$bg_color[$color]} %$sep_color[$color]F\uE0B1%f %$prefix_color[$color]F$prefixes[1]%76F$extra_icons[2]master ⇡2 %k%$bg_color[$color]F\uE0B0%f'
|
||||||
'%$frame_color[$color]F╰─' '%f █'
|
'%$frame_color[$color]F╰─' '%f █'
|
||||||
)
|
)
|
||||||
|
|
||||||
typeset -ra classic_right=(
|
typeset -ra classic_right=(
|
||||||
'%$bg_color[$color]F\uE0B2%K{$bg_color[$color]}%f $prefixes[2]%134Fminikube ⎈ %k%f' '%$frame_color[$color]F─╮%f'
|
'%$bg_color[$color]F\uE0B2%K{$bg_color[$color]}%f %$prefix_color[$color]F$prefixes[2]%134Fminikube ⎈ %k%f' '%$frame_color[$color]F─╮%f'
|
||||||
'' '%$frame_color[$color]F─╯%f'
|
'' '%$frame_color[$color]F─╯%f'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -680,15 +681,21 @@ function generate_config() {
|
||||||
local right_start='\uE0B2'
|
local right_start='\uE0B2'
|
||||||
|
|
||||||
if (( straight )); then
|
if (( straight )); then
|
||||||
[[ $POWERLEVEL9K_MODE == nerdfont-complete ]] && subsep='\uE0BD' || subsep='|'
|
if [[ $POWERLEVEL9K_MODE == nerdfont-complete ]]; then
|
||||||
|
left_subsep='\uE0BD'
|
||||||
|
right_subset='\uE0BD'
|
||||||
|
else
|
||||||
|
left_subsep='|'
|
||||||
|
right_subset'|'
|
||||||
|
fi
|
||||||
left_end='▓▒░'
|
left_end='▓▒░'
|
||||||
right_start='░▒▓'
|
right_start='░▒▓'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sub LEFT_SUBSEGMENT_SEPARATOR "'%$sep_color[$color]F$subsep'"
|
sub LEFT_SUBSEGMENT_SEPARATOR "'%$sep_color[$color]F$left_subsep'"
|
||||||
sub RIGHT_SUBSEGMENT_SEPARATOR "'%$sep_color[$color]F$subsep'"
|
sub RIGHT_SUBSEGMENT_SEPARATOR "'%$sep_color[$color]F$right_subsep'"
|
||||||
sub LEFT_SEGMENT_SEPARATOR "'$subsep'"
|
sub LEFT_SEGMENT_SEPARATOR "'$left_subsep'"
|
||||||
sub RIGHT_SEGMENT_SEPARATOR "'$subsep'"
|
sub RIGHT_SEGMENT_SEPARATOR "'$right_subsep'"
|
||||||
sub LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL "'$left_end'"
|
sub LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL "'$left_end'"
|
||||||
sub RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL "'$right_start'"
|
sub RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL "'$right_start'"
|
||||||
fi
|
fi
|
||||||
|
@ -713,8 +720,14 @@ function generate_config() {
|
||||||
uncomment 'typeset -g POWERLEVEL9K_CONTEXT_PREFIX'
|
uncomment 'typeset -g POWERLEVEL9K_CONTEXT_PREFIX'
|
||||||
uncomment 'typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX'
|
uncomment 'typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX'
|
||||||
uncomment 'typeset -g POWERLEVEL9K_TIME_PREFIX'
|
uncomment 'typeset -g POWERLEVEL9K_TIME_PREFIX'
|
||||||
sub CONTEXT_TEMPLATE "'%n%f at %180F%m'"
|
[[ $style == classic ]] && local fg="%$prefix_color[$color]F" || local fg="%f"
|
||||||
sub CONTEXT_ROOT_TEMPLATE "'%n%f at %227F%m'"
|
sub VCS_PREFIX "'${fg}on '"
|
||||||
|
sub COMMAND_EXECUTION_TIME_PREFIX "'${fg}took '"
|
||||||
|
sub CONTEXT_PREFIX "'${fg}with '"
|
||||||
|
sub KUBECONTEXT_PREFIX "'${fg}at '"
|
||||||
|
sub TIME_PREFIX "'${fg}at '"
|
||||||
|
sub CONTEXT_TEMPLATE "'%n$fg at %180F%m'"
|
||||||
|
sub CONTEXT_ROOT_TEMPLATE "'%n$fg at %227F%m'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if (( num_lines == 1 )); then
|
if (( num_lines == 1 )); then
|
||||||
|
|
Loading…
Reference in a new issue