mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
fork before calling _p9k_init_icons
This commit is contained in:
parent
e4f04403d0
commit
6699d15df9
1 changed files with 10 additions and 8 deletions
|
@ -236,13 +236,16 @@ function ask_narrow_icons() {
|
||||||
cap_narrow_icons=0
|
cap_narrow_icons=0
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
local text="X"
|
local text=$(
|
||||||
text+="%1F${icons[VCS_GIT_ICON]// }%fX"
|
_p9k_init_icons
|
||||||
text+="%2F${icons[VCS_GIT_GITHUB_ICON]// }%fX"
|
print -nr -- "X"
|
||||||
text+="%3F${icons[DATE_ICON]// }%fX"
|
print -nr -- "%1F${icons[VCS_GIT_ICON]// }%fX"
|
||||||
text+="%4F${icons[TIME_ICON]// }%fX"
|
print -nr -- "%2F${icons[VCS_GIT_GITHUB_ICON]// }%fX"
|
||||||
text+="%5F${icons[RUBY_ICON]// }%fX"
|
print -nr -- "%3F${icons[DATE_ICON]// }%fX"
|
||||||
text+="%6F${icons[AWS_EB_ICON]// }%fX"
|
print -nr -- "%4F${icons[TIME_ICON]// }%fX"
|
||||||
|
print -nr -- "%5F${icons[RUBY_ICON]// }%fX"
|
||||||
|
print -nr -- "%6F${icons[AWS_EB_ICON]// }%fX"
|
||||||
|
)
|
||||||
while true; do
|
while true; do
|
||||||
clear
|
clear
|
||||||
centered "%BDo all these icons %b%2Ffit between the crosses%f%B?%b"
|
centered "%BDo all these icons %b%2Ffit between the crosses%f%B?%b"
|
||||||
|
@ -674,7 +677,6 @@ while true; do
|
||||||
(( cap_python )) && POWERLEVEL9K_MODE=awesome-fontconfig || POWERLEVEL9K_MODE=nerdfont-complete
|
(( cap_python )) && POWERLEVEL9K_MODE=awesome-fontconfig || POWERLEVEL9K_MODE=nerdfont-complete
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
_p9k_init_icons
|
|
||||||
ask_narrow_icons || { (( $? == 2 )) && continue || return }
|
ask_narrow_icons || { (( $? == 2 )) && continue || return }
|
||||||
ask_style || { (( $? == 2 )) && continue || return }
|
ask_style || { (( $? == 2 )) && continue || return }
|
||||||
ask_straight || { (( $? == 2 )) && continue || return }
|
ask_straight || { (( $? == 2 )) && continue || return }
|
||||||
|
|
Loading…
Reference in a new issue