font config wizard

pull/145/head
romkatv 5 years ago
parent 6a1ea41b2a
commit 10fd41d187

@ -1,125 +1,195 @@
function _p9k_clear() {
if (( $+commands[clear] )); then
if [[ -n $AWESOME_GLYPHS_LOADED ]]; then clear
echo awesome-mapped-fontconfig elif zmodload zsh/termcap 2>/dev/null; then
else echotc cl
echo $'\uE0B2\uE0B0' else
echo "Does this look like a diamond (square rotated 45 degrees)?" print -n "\e[H\e[J"
$'\uE0B2\uE0B0'

if N; then
echo nothing
return
fi
echo 1 $'\UE138'
echo 2 $'\UF023'
echo "Which of these looks like a lock?"
if neither; then
echo powerline
return
fi fi
if 1; then }
echo awesome-patched
function _p9k_make_link() {
echo $'%{\e]8;;'${1//\%/%%}$'\a%}'${1//\%/%%}$'%{\e]8;;\a%}'
}
function _p9k_ask_diamond() {
while true; do
_p9k_clear
print -P "This is %B%4FPowerlevel10k configuration wizard%f%b. You are seeing it because"
print -P "you haven't defined any Powerlevel10k configuration options. It will"
print -P "ask you a few questions and configure your prompt."
print -P ""
print -P " %BDoes this look like a %2Fdiamond%f (square rotated 45 degrees)?%b"
print -P " reference: $(_p9k_make_link https://graphemica.com/%E2%97%86)"
print -P ""
print -P " ---> %B\uE0B2\uE0B0%b <---"
print -P ""
print -P "(%By%b) Yes."
print -P ""
print -P "(%Bn%b) No."
print -P ""
print -P "%248F(q) Quit and do nothing.%f"
print -P ""
local key=
read -k key"?Choice [ynq]: " || return 1
case $key in
q) _p9k_configure_quit; return 1;;
y) typeset -gi _p9k_caps_diamond=1; break;;
n) typeset -gi _p9k_caps_diamond=0; break;;
esac
done
}
function _p9k_ask_lock() {
while true; do
_p9k_clear
print -P " %BWhich of these icons looks like a %2Flock%f?%b"
print -P " reference: $(_p9k_make_link https://fontawesome.com/icons/lock)"
print -P ""
print -P " Icon #1"
print -P ""
print -P " ---> %B%3F\uE138%f%b <---"
print -P ""
print -P " Icon #2"
print -P ""
print -P " ---> %B%4F\uF023%f%b <---"
print -P ""
print -P "(%B1%b) Only icon #1 ( %B%3F\uE138%f%b )."
print -P ""
print -P "(%B2%b) Only icon #2 ( %B%4F\uF023%f%b )."
print -P ""
print -P "(%Bn%b) Neither."
print -P ""
print -P "(%Bb%b) Both."
print -P ""
print -P "%248F(r) Restart from the beginning.%f"
print -P ""
print -P "%248F(q) Quit and do nothing.%f"
print -P ""
local key=
read -k key"?Choice [12nbrq]: " || return 1
case $key in
q) _p9k_configure_quit; return 1;;
r) return 2;;
1|2) typeset -g _p9k_caps_lock=$key; break;;
b) typeset -g _p9k_caps_lock=12; break;;
n) typeset -g _p9k_caps_lock=; break;;
esac
done
}
function _p9k_ask_python() {
while true; do
_p9k_clear
print -P " %BDoes this look like a %2FPython logo%f?%b"
print -P " reference: $(_p9k_make_link https://fontawesome.com/icons/python)"
print -P ""
print -P " ---> %B\uE63C%b <---"
print -P ""
print -P "(%By%b) Yes."
print -P ""
print -P "(%Bn%b) No."
print -P ""
print -P "%248F(r) Restart from the beginning.%f"
print -P ""
print -P "%248F(q) Quit and do nothing.%f"
print -P ""
local key=
read -k key"?Choice [ynrq]: " || return 1
case $key in
q) _p9k_configure_quit; return 1;;
r) return 2;;
y) typeset -gi _p9k_caps_python=1; break;;
n) typeset -gi _p9k_caps_python=0; break;;
esac
done
}
function _p9k_ask_icon_width() {
if [[ $1 == (powerline|compatible) ]]; then
typeset -gi _p9k_caps_narrow_icons=0
return return
fi fi
echo $'\ue63c' local text=$(
echo "Does it look like a Python logo? https://commons.wikimedia.org/wiki/File:Python-logo-notext.svg" POWERLEVEL9K_MODE=$1
if yes; then _p9k_init_icons
echo awesome-fontconfig echo -n "X%1F${icons[VCS_GIT_ICON]// }%fX"
return echo -n "%2F${icons[VCS_GIT_GITHUB_ICON]// }%fX"
fi echo -n "%3F${icons[DATE_ICON]// }%fX"
echo nerfont-complete echo -n "%4F${icons[TIME_ICON]// }%fX"
fi echo -n "%5F${icons[RUBY_ICON]// }%fX"
echo -n "%6F${icons[AWS_EB_ICON]// }%fX"
awesome-mapped-fontconfig) )
has $AWESOME_GLYPHS_LOADED while true; do
_p9k_clear
'flat'|'awesome-patched') print -P " %BDo all these icons %2Ffit between the crosses%f?"
LOCK_ICON $'\UE138' print -P ""
print -P " ---> %B$text%b <---"
'awesome-fontconfig') print -P ""
LOCK_ICON $'\UF023' print -P "(%By%b) Yes. Icons are very close to the crosses but there is %B%2Fno overlap%f%b."
print -P ""
'nerdfont-complete'|'nerdfont-fontconfig') print -P "(%Bn%b) No. Some icons %B%2Foverlap%f%b neighbouring crosses."
LOCK_ICON $'\UF023' print -P ""
print -P "%248F(r) Restart from the beginning.%f"
*) print -P ""
LOCK_ICON $'\UE0A2' print -P "%248F(q) Quit and do nothing.%f"
print -P ""
ROOT_ICON
awesome-fontconfig \uF201 local key=
nerfont \uE614 read -k key"?Choice [ynrq]: " || return 1
flat|awesome-patched \uE801 case $key in
q) _p9k_configure_quit; return 1;;
1. Nerd Fonts r) return 2;;
y) typeset -gi _p9k_caps_narrow_icons=1; break;;
Lock: $'\UF023' n) typeset -gi _p9k_caps_narrow_icons=2; break;;
esac
2. Awesome Fontconfig (fallback strategy) done
}
Lock: $'\UF023'
Lightning: $'\uF201' function _p9k_configure_quit() {
_p9k_clear
3. Awesome Fontconfig (patch strategy) print -P "Powerlevel10k configuration wizard will run again next time unless"
print -P "you define at least one Powerlevel10k configuration option. To define"
Lock: $'\UE138' print -P "an option that does nothing except for disabling Powerlevel10k"
Lightning: $'\uE801' print -P "configuration wizard, type the following command:"
print -P ""
--------------------------- print -P " %2Fecho%f %3F'POWERLEVEL9K_MODE='%f %15F>>! ${ZDOTDIR:-~}/.zshrc%f"
This is the Z Shell configuration function for new users, print -P ""
zsh-newuser-install. }
You are seeing this message because you have no zsh startup files
(the files .zshenv, .zprofile, .zshrc, .zlogin in the directory function _p9k_configure() {
~). This function can help you with a few settings that should emulate -L zsh && setopt no_hist_expand extended_glob
make your use of the shell easier.
local zd=${ZDOTDIR:-$HOME}
You can: [[ -w $zd ]] || return 1
[[ -t 0 && -t 1 ]] || return 1
(q) Quit and do nothing. The function will be run again next time. (( LINES > 20 && COLUMNS > 70 )) || return 1
(0) Exit, creating the file ~/.zshrc containing just a comment. while true; do
That will prevent this function being run again. _p9k_ask_diamond || { (( $? == 2 )) && continue || return }
local mode
(1) Continue to the main menu. if [[ -n $AWESOME_GLYPHS_LOADED ]]; then
mode=awesome-mapped-fontconfig
(2) Populate your ~/.zshrc with the configuration recommended else
by the system administrator and exit (you will need to edit _p9k_ask_lock || { (( $? == 2 )) && continue || return }
the file by hand, if so desired). if [[ $_p9k_caps_lock == 1 ]]; then
(( _p9k_caps_diamond )) && mode=awesome-patched || mode=flat
--- Type one of the keys in parentheses --- elif [[ -z $_p9k_caps_lock ]]; then
(( _p9k_caps_diamond )) && mode=powerline || mode=compatible
Please pick one of the following options: else
_p9k_ask_python || { (( $? == 2 )) && continue || return }
(1) Configure settings for history, i.e. command lines remembered (( _p9k_caps_python )) && mode=awesome-fontconfig || mode=nerdfont-complete
and saved by the shell. (Recommended.) fi
fi
(2) Configure the new completion system. (Recommended.) _p9k_ask_icon_width $mode || { (( $? == 2 )) && continue || return }
break
(3) Configure how keys behave when editing command lines. (Recommended.) done
_p9k_clear
(4) Pick some of the more common shell options. These are simple "on"
or "off" switches controlling the shell's features. typeset -p mode _p9k_caps_diamond _p9k_caps_narrow_icons
}
(0) Exit, creating a blank ~/.zshrc file.
_p9k_configure
(a) Abort all settings and start from scratch. Note this will overwrite
any settings from zsh-newuser-install already in the startup file.
It will not alter any of your other settings, however.
(q) Quit and do nothing else. The function will be run again next time.
--- Type one of the keys in parentheses ---
History configuration
=====================
# (1) Number of lines of history kept within the shell.
HISTSIZE=1000 (not yet saved)
# (2) File where history is saved.
HISTFILE=~/.histfile (not yet saved)
# (3) Number of lines of history to save to $HISTFILE.
SAVEHIST=1000 (not yet saved)
# (0) Remember edits and return to main menu (does not save file yet)
# (q) Abandon edits and return to main menu
--- Type one of the keys in parentheses ---

Loading…
Cancel
Save