add rainbow style to the screenshot
parent
bd304edb47
commit
4e4dd929c3
|
@ -1552,22 +1552,25 @@ while true; do
|
||||||
_p9k_init_icons
|
_p9k_init_icons
|
||||||
ask_narrow_icons || continue
|
ask_narrow_icons || continue
|
||||||
|
|
||||||
local dir_icon=${(g::)icons[HOME_SUB_ICON]}
|
# Set screen size to 80x25, run `p10k configure`, answer "yyyy22".
|
||||||
local vcs_icon=${(g::)icons[VCS_GIT_GITHUB_ICON]}
|
local few_icons=("$extra_icons[@]")
|
||||||
local branch_icon=${(g::)icons[VCS_BRANCH_ICON]}
|
ask_extra_icons || continue
|
||||||
if (( cap_narrow_icons )); then
|
local many_icons=("$extra_icons[@]")
|
||||||
dir_icon=${dir_icon// }
|
|
||||||
vcs_icon=${vcs_icon// }
|
local concise=("$prefixes[@]")
|
||||||
branch_icon=${branch_icon// }
|
ask_prefixes || continue
|
||||||
fi
|
local fluent=("$prefixes[@]")
|
||||||
local many=("$dir_icon " "$vcs_icon $branch_icon ")
|
|
||||||
|
color=3
|
||||||
|
|
||||||
# Set screen size to 70x20, run p9k_configure, answer 'yyny'.
|
|
||||||
reset
|
reset
|
||||||
echo
|
echo
|
||||||
centered "Lean Style"
|
flowing -c "Lean Style"
|
||||||
(
|
(
|
||||||
style=lean
|
style=lean
|
||||||
|
extra_icons=("$few_icons[@]")
|
||||||
|
prefixes=("$concise[@]")
|
||||||
|
show_time=
|
||||||
num_lines=1
|
num_lines=1
|
||||||
prompt_indent=4
|
prompt_indent=4
|
||||||
rprompt_indent=4
|
rprompt_indent=4
|
||||||
|
@ -1577,8 +1580,9 @@ while true; do
|
||||||
echo
|
echo
|
||||||
(
|
(
|
||||||
style=lean
|
style=lean
|
||||||
extra_icons=($many)
|
extra_icons=("$many_icons[@]")
|
||||||
prefixes=('on ' 'at ')
|
prefixes=("$fluent[@]")
|
||||||
|
show_time=1
|
||||||
num_lines=2
|
num_lines=2
|
||||||
prompt_indent=4
|
prompt_indent=4
|
||||||
rprompt_indent=4
|
rprompt_indent=4
|
||||||
|
@ -1586,9 +1590,12 @@ while true; do
|
||||||
print_prompt
|
print_prompt
|
||||||
)
|
)
|
||||||
echo
|
echo
|
||||||
centered "Classic Style"
|
flowing -c "Classic Style"
|
||||||
(
|
(
|
||||||
style=classic
|
style=classic
|
||||||
|
extra_icons=("$few_icons[@]")
|
||||||
|
prefixes=("$concise[@]")
|
||||||
|
show_time=
|
||||||
num_lines=1
|
num_lines=1
|
||||||
prompt_indent=4
|
prompt_indent=4
|
||||||
rprompt_indent=4
|
rprompt_indent=4
|
||||||
|
@ -1598,6 +1605,9 @@ while true; do
|
||||||
echo
|
echo
|
||||||
(
|
(
|
||||||
style=classic
|
style=classic
|
||||||
|
extra_icons=("$many_icons[@]")
|
||||||
|
prefixes=("$fluent[@]")
|
||||||
|
show_time=1
|
||||||
num_lines=2
|
num_lines=2
|
||||||
# slanted sep
|
# slanted sep
|
||||||
left_sep=$down_triangle
|
left_sep=$down_triangle
|
||||||
|
@ -1614,8 +1624,25 @@ while true; do
|
||||||
echo
|
echo
|
||||||
print_prompt
|
print_prompt
|
||||||
)
|
)
|
||||||
|
echo
|
||||||
|
flowing -c "Rainbow Style"
|
||||||
(
|
(
|
||||||
style=classic
|
style=rainbow
|
||||||
|
extra_icons=("$few_icons[@]")
|
||||||
|
prefixes=("$concise[@]")
|
||||||
|
show_time=
|
||||||
|
num_lines=1
|
||||||
|
prompt_indent=4
|
||||||
|
rprompt_indent=4
|
||||||
|
echo
|
||||||
|
print_prompt
|
||||||
|
)
|
||||||
|
echo
|
||||||
|
(
|
||||||
|
style=rainbow
|
||||||
|
extra_icons=("$many_icons[@]")
|
||||||
|
prefixes=("$fluent[@]")
|
||||||
|
show_time=1
|
||||||
num_lines=2
|
num_lines=2
|
||||||
# slanted sep
|
# slanted sep
|
||||||
left_sep=$down_triangle
|
left_sep=$down_triangle
|
||||||
|
@ -1629,17 +1656,16 @@ while true; do
|
||||||
left_tail=$up_triangle
|
left_tail=$up_triangle
|
||||||
right_tail=$down_triangle
|
right_tail=$down_triangle
|
||||||
# gap_char="·"
|
# gap_char="·"
|
||||||
# gap_char="─"
|
gap_char="─"
|
||||||
left_frame=0; right_frame=1
|
left_frame=0; right_frame=1
|
||||||
extra_icons=($many)
|
|
||||||
prompt_indent=4
|
prompt_indent=4
|
||||||
rprompt_indent=2
|
rprompt_indent=2
|
||||||
echo
|
echo
|
||||||
print_prompt
|
print_prompt
|
||||||
)
|
)
|
||||||
tput civis
|
tput civis
|
||||||
|
trap 'tput cnorm' EXIT INT
|
||||||
read
|
read
|
||||||
tput cnorm
|
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
ask_style || continue
|
ask_style || continue
|
||||||
|
|
Loading…
Reference in New Issue