powerlevel10k/internal/wizard.zsh

416 lines
12 KiB
Bash
Raw Normal View History

2019-07-27 20:37:34 +02:00
#!/usr/bin/env zsh
emulate -L zsh
setopt extended_glob noaliases
2019-07-28 11:36:40 +02:00
() {
2019-07-27 20:37:34 +02:00
2019-07-28 11:36:40 +02:00
readonly p10k_root_dir=${${1:-${0:h:h}}:A}
2019-07-27 20:37:34 +02:00
readonly zd=${ZDOTDIR:-$HOME}
readonly zdu=${zd/#(#b)$HOME(|\/*)/'~'$match[1]}
2019-07-28 11:36:40 +02:00
readonly config_basename=.p10k.zsh
2019-07-27 20:37:34 +02:00
2019-07-28 11:36:40 +02:00
local POWERLEVEL9K_MODE cap_lock style config_backup
local -i cap_diamond cap_python cap_narrow_icons num_lines config_overwrite
2019-07-27 20:37:34 +02:00
2019-07-28 11:36:40 +02:00
function clear() {
2019-07-27 18:30:20 +02:00
if (( $+commands[clear] )); then
2019-07-28 11:36:40 +02:00
command clear
2019-07-27 18:30:20 +02:00
elif zmodload zsh/termcap 2>/dev/null; then
echotc cl
else
print -n "\e[H\e[J"
2019-07-26 11:03:56 +02:00
fi
2019-07-27 18:30:20 +02:00
}
2019-07-28 11:36:40 +02:00
function href() {
2019-07-27 18:30:20 +02:00
echo $'%{\e]8;;'${1//\%/%%}$'\a%}'${1//\%/%%}$'%{\e]8;;\a%}'
}
2019-07-28 11:36:40 +02:00
function ask_diamond() {
2019-07-27 18:30:20 +02:00
while true; do
2019-07-28 11:36:40 +02:00
clear
2019-07-27 18:30:20 +02:00
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"
2019-07-28 11:36:40 +02:00
print -P " reference: $(href https://graphemica.com/%E2%97%86)"
2019-07-27 18:30:20 +02:00
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
2019-07-28 11:36:40 +02:00
q) quit; return 1;;
y) cap_diamond=1; break;;
n) cap_diamond=0; break;;
2019-07-27 18:30:20 +02:00
esac
done
}
2019-07-28 11:36:40 +02:00
function ask_lock() {
2019-07-27 18:30:20 +02:00
while true; do
2019-07-28 11:36:40 +02:00
clear
2019-07-27 18:30:20 +02:00
print -P " %BWhich of these icons looks like a %2Flock%f?%b"
2019-07-28 11:36:40 +02:00
print -P " reference: $(href https://fontawesome.com/icons/lock)"
2019-07-27 18:30:20 +02:00
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
2019-07-28 11:36:40 +02:00
q) quit; return 1;;
2019-07-27 18:30:20 +02:00
r) return 2;;
2019-07-28 11:36:40 +02:00
1|2) cap_lock=$key; break;;
b) cap_lock=12; break;;
n) cap_lock=; break;;
2019-07-27 18:30:20 +02:00
esac
done
}
2019-07-28 11:36:40 +02:00
function ask_python() {
2019-07-27 18:30:20 +02:00
while true; do
2019-07-28 11:36:40 +02:00
clear
2019-07-27 18:30:20 +02:00
print -P " %BDoes this look like a %2FPython logo%f?%b"
2019-07-28 11:36:40 +02:00
print -P " reference: $(href https://fontawesome.com/icons/python)"
2019-07-27 18:30:20 +02:00
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
2019-07-28 11:36:40 +02:00
q) quit; return 1;;
2019-07-27 18:30:20 +02:00
r) return 2;;
2019-07-28 11:36:40 +02:00
y) cap_python=1; break;;
n) cap_python=0; break;;
2019-07-27 18:30:20 +02:00
esac
done
}
2019-07-28 11:36:40 +02:00
function ask_narrow_icons() {
2019-07-27 20:37:34 +02:00
if [[ $POWERLEVEL9K_MODE == (powerline|compatible) ]]; then
2019-07-28 11:36:40 +02:00
cap_narrow_icons=0
2019-07-26 11:03:56 +02:00
return
fi
2019-07-27 20:37:34 +02:00
local text="X"
text+="X%1F${icons[VCS_GIT_ICON]// }%fX"
text+="%2F${icons[VCS_GIT_GITHUB_ICON]// }%fX"
text+="%3F${icons[DATE_ICON]// }%fX"
text+="%4F${icons[TIME_ICON]// }%fX"
text+="%5F${icons[RUBY_ICON]// }%fX"
text+="%6F${icons[AWS_EB_ICON]// }%fX"
2019-07-27 18:30:20 +02:00
while true; do
2019-07-28 11:36:40 +02:00
clear
2019-07-27 20:37:34 +02:00
print -P " %BDo all these icons %2Ffit between the crosses%f?%b"
2019-07-27 18:30:20 +02:00
print -P ""
print -P " ---> %B$text%b <---"
print -P ""
print -P "(%By%b) Yes. Icons are very close to the crosses but there is %B%2Fno overlap%f%b."
print -P ""
print -P "(%Bn%b) No. Some icons %B%2Foverlap%f%b neighbouring crosses."
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
2019-07-28 11:36:40 +02:00
q) quit; return 1;;
2019-07-27 18:30:20 +02:00
r) return 2;;
2019-07-28 11:36:40 +02:00
y) cap_narrow_icons=1; break;;
n) cap_narrow_icons=2; break;;
2019-07-27 18:30:20 +02:00
esac
done
}
2019-07-28 11:36:40 +02:00
function quit() {
clear
2019-07-27 18:30:20 +02:00
print -P "Powerlevel10k configuration wizard will run again next time unless"
print -P "you define at least one Powerlevel10k configuration option. To define"
print -P "an option that does nothing except for disabling Powerlevel10k"
print -P "configuration wizard, type the following command:"
print -P ""
2019-07-27 20:37:34 +02:00
print -P " %2Fecho%f %3F'POWERLEVEL9K_MODE='%f %15F>>! $zdu/.zshrc%f"
2019-07-27 18:30:20 +02:00
print -P ""
}
2019-07-28 11:36:40 +02:00
function ask_style() {
if (( ! cap_diamond )); then
style=lean
2019-07-27 20:37:34 +02:00
return
fi
while true; do
2019-07-28 11:36:40 +02:00
clear
2019-07-27 20:37:34 +02:00
print -P " %BChoose your prompt style%b"
print -P ""
print -P " %BLean%b"
2019-07-27 20:37:34 +02:00
print -P ""
print -P " %B%39F~%b%12F/%B%39Fpowerlevel10k%b %76Fmaster ⇡2%f"
print -P " %76F%f █"
print -P ""
print -P " %BClassic%b"
2019-07-27 20:37:34 +02:00
print -P ""
print -P " %8F╭─%K{0} %B%39F~%b%K{0}%12F/%B%39Fpowerlevel10k%b%K{0} %244F\uE0B1 %76Fmaster ⇡2 %k%0F\uE0B0"
print -P " %8F╰─%f █"
print -P ""
print -P "(%B1%b) Lean."
2019-07-27 20:37:34 +02:00
print -P ""
print -P "(%B2%b) Classic."
2019-07-27 20:37:34 +02:00
print -P ""
print -P "%248F(r) Restart from the beginning.%f"
print -P ""
print -P "%248F(q) Quit and do nothing.%f"
print -P ""
2019-07-27 18:30:20 +02:00
2019-07-27 20:37:34 +02:00
local key=
read -k key"?Choice [12rq]: " || return 1
case $key in
2019-07-28 11:36:40 +02:00
q) quit; return 1;;
2019-07-27 20:37:34 +02:00
r) return 2;;
2019-07-28 11:36:40 +02:00
1) style=lean; break;;
2) style=classic; break;;
2019-07-27 20:37:34 +02:00
esac
done
}
2019-07-28 11:36:40 +02:00
function ask_num_lines() {
2019-07-27 20:37:34 +02:00
while true; do
2019-07-28 11:36:40 +02:00
clear
2019-07-27 20:37:34 +02:00
print -P " %BOne or two prompt lines?%b"
print -P ""
print -P " %BOne Line%b"
print -P ""
2019-07-28 11:36:40 +02:00
if [[ $style == lean ]]; then
2019-07-27 20:37:34 +02:00
print -P " %B%39F~%b%12F/%B%39Fpowerlevel10k%b %76Fmaster ⇡2 %76F%f █"
else
print -P " %K{0} %B%39F~%b%K{0}%12F/%B%39Fpowerlevel10k%b%K{0} %244F\uE0B1 %76Fmaster ⇡2 %k%0F\uE0B0%f █"
fi
print -P ""
print -P " %BTwo Lines%b"
2019-07-27 20:37:34 +02:00
print -P ""
2019-07-28 11:36:40 +02:00
if [[ $style == lean ]]; then
2019-07-27 20:37:34 +02:00
print -P " %B%39F~%b%12F/%B%39Fpowerlevel10k%b %76Fmaster ⇡2%f"
print -P " %76F%f █"
else
print -P " %8F╭─%K{0} %B%39F~%b%K{0}%12F/%B%39Fpowerlevel10k%b%K{0} %244F\uE0B1 %76Fmaster ⇡2 %k%0F\uE0B0"
print -P " %8F╰─%f █"
fi
print -P ""
print -P "(%B1%b) %BOne Line%b."
print -P ""
print -P "(%B2%b) %BTwo lines%b."
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 [12rq]: " || return 1
case $key in
2019-07-28 11:36:40 +02:00
q) quit; return 1;;
2019-07-27 20:37:34 +02:00
r) return 2;;
2019-07-28 11:36:40 +02:00
1|2) num_lines=$key; break;;
2019-07-27 20:37:34 +02:00
esac
done
}
2019-07-28 11:36:40 +02:00
function ask_config_overwrite() {
config_backup=
if [[ ! -e $zd/$config_basename ]]; then
config_overwrite=1
2019-07-27 20:37:34 +02:00
return
fi
while true; do
2019-07-28 11:36:40 +02:00
clear
print -P " %BConfig already exists: %2F$zdu/$config_basename%f%b"
2019-07-27 20:37:34 +02:00
print -P ""
2019-07-28 11:36:40 +02:00
print -P "(%Bw%b) %B%2FOverwrite%f $zdu/$config_basename%b with the new config."
2019-07-27 20:37:34 +02:00
print -P ""
2019-07-28 11:36:40 +02:00
print -P "(%Bk%b) %B%2FKeep%f $zdu/$config_basename%b and discard the new content."
2019-07-27 20:37:34 +02:00
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 [wkrq]: " || return 1
case $key in
2019-07-28 11:36:40 +02:00
q) quit; return 1;;
2019-07-27 20:37:34 +02:00
r) return 2;;
w)
2019-07-28 11:36:40 +02:00
config_backup=$(mktemp ${TMPDIR:-/tmp}/$config_basename.XXXXXXXXXX) || return 1
cp $zd/$config_basename $config_backup
config_overwrite=1
2019-07-27 20:37:34 +02:00
break
;;
2019-07-28 11:36:40 +02:00
k) config_overwrite=0; break;;
2019-07-27 20:37:34 +02:00
esac
done
}
2019-07-28 11:36:40 +02:00
function generate_config() {
local base && base="$(<$p10k_root_dir/config/p10k-$style.zsh)" || return
local lines=("${(@f)base}")
2019-07-28 11:36:40 +02:00
function sub() {
2019-07-28 10:34:06 +02:00
lines=("${(@)lines/# typeset -g POWERLEVEL9K_$1=*/ typeset -g POWERLEVEL9K_$1=$2}")
}
2019-07-28 11:36:40 +02:00
sub MODE $POWERLEVEL9K_MODE
if [[ $POWERLEVEL9K_MODE == (powerline|compatible) && $style == lean ]]; then
sub VISUAL_IDENTIFIER_EXPANSION "''"
elif (( cap_narrow_icons )); then
sub VISUAL_IDENTIFIER_EXPANSION "'\${P9K_VISUAL_IDENTIFIER// }'"
2019-07-27 20:37:34 +02:00
else
2019-07-28 11:36:40 +02:00
sub VISUAL_IDENTIFIER_EXPANSION "'\${P9K_VISUAL_IDENTIFIER}'"
2019-07-27 20:37:34 +02:00
fi
2019-07-28 11:36:40 +02:00
if (( num_lines == 1 )); then
2019-07-27 20:37:34 +02:00
local -a tmp
local line
for line in "$lines[@]"; do
2019-07-27 20:37:34 +02:00
[[ $line == (' newline'|*'===[ Line #'*) ]] || tmp+=$line
done
lines=("$tmp[@]")
2019-07-27 20:37:34 +02:00
fi
local header=${(%):-"# Generated by Powerlevel10k configuration wizard on %D{%Y-%m-%d at %H:%M %Z}."}$'\n'
2019-07-28 11:36:40 +02:00
header+="# Based on romkatv/powerlevel10k/config/p10k-$style.zsh"
if [[ $commands[sum] == ('/bin'|'/usr/bin'|'/usr/local/bin')'/sum' ]]; then
local -a sum
if sum=($(sum <<<${base//$'\r\n'/$'\n'} 2>/dev/null)) && (( $#sum == 2 )); then
header+=", checksum $sum[1]"
fi
fi
header+=$'.\n'
2019-07-28 11:36:40 +02:00
header+="# Wizard options: font=$POWERLEVEL9K_MODE, lines=$num_lines, narrow-icons=$cap_narrow_icons."$'\n#'
if [[ -e $zd/$config_basename ]]; then
unlink $zd/$config_basename || return 1
fi
print -lr -- "$header" "$lines[@]" >$zd/$config_basename
2019-07-27 20:37:34 +02:00
}
2019-07-28 11:37:00 +02:00
if [[ ! -o multibyte ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: multibyte option is not set" >&2
return 1
fi
if [[ "${#$(print -P '\u276F' 2>/dev/null)}" != 1 ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: shell doesn't support unicode" >&2
return 1
fi
if [[ ! -w $zd ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: $zdu is not writable" >&2
return 1
fi
if [[ -d $zd/$config_basename ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: $zdu/$config_basename is a directory" >&2
return 1
fi
if [[ -e $zd/$config_basename && ! ( -f $zd/$config_basename || -h $zd/$config_basename ) ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: $zdu/$config_basename is a special file" >&2
return 1
fi
if [[ ! -t 0 || ! -t 1 ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: no TTY" >&2
return 1
fi
if (( LINES < 20 || COLUMNS < 70 )); then
print -P "%1F[ERROR]%f %Bp9k_configure%b: terminal size too small" >&2
return 1
fi
if [[ ! -r $p10k_root_dir/config/p10k-lean.zsh ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: cannot read $p10k_root_dir/config/p10k-lean.zsh" >&2
return 1
fi
if [[ ! -r $p10k_root_dir/config/p10k-classic.zsh ]]; then
print -P "%1F[ERROR]%f %Bp9k_configure%b: cannot read $p10k_root_dir/config/p10k-classic.zsh" >&2
return 1
fi
2019-07-28 11:36:40 +02:00
source $p10k_root_dir/internal/icons.zsh || return
2019-07-27 18:30:20 +02:00
2019-07-28 11:36:40 +02:00
while true; do
ask_diamond || { (( $? == 2 )) && continue || return }
if [[ -n $AWESOME_GLYPHS_LOADED ]]; then
POWERLEVEL9K_MODE=awesome-mapped-fontconfig
else
ask_lock || { (( $? == 2 )) && continue || return }
if [[ $cap_lock == 1 ]]; then
(( cap_diamond )) && POWERLEVEL9K_MODE=awesome-patched || POWERLEVEL9K_MODE=flat
elif [[ -z $cap_lock ]]; then
(( cap_diamond )) && POWERLEVEL9K_MODE=powerline || POWERLEVEL9K_MODE=compatible
2019-07-27 18:30:20 +02:00
else
2019-07-28 11:36:40 +02:00
ask_python || { (( $? == 2 )) && continue || return }
(( cap_python )) && POWERLEVEL9K_MODE=awesome-fontconfig || POWERLEVEL9K_MODE=nerdfont-complete
2019-07-27 18:30:20 +02:00
fi
2019-07-27 20:37:34 +02:00
fi
2019-07-28 11:36:40 +02:00
_p9k_init_icons
ask_narrow_icons || { (( $? == 2 )) && continue || return }
ask_style || { (( $? == 2 )) && continue || return }
ask_num_lines || { (( $? == 2 )) && continue || return }
ask_config_overwrite || { (( $? == 2 )) && continue || return }
break
done
clear
if [[ -n $config_backup ]]; then
print -P "The previous version of your %B%2F$zdu/$config_basename%f%b has been moved"
print -P "to %B%2F$config_backup%f%b."
fi
if (( config_overwrite )); then
generate_config || return
fi
local comments=(
"# Apply the personalized Powerlevel10k configuration."
"# You can customize your prompt by editing this file."
"# To run configuration wizard again, remove the next line."
)
print -lr -- "" $comments "source $zdu/$config_basename" >>$zd/.zshrc
print -P ""
print -P "The following lines have been appended to your %B%2F$zdu/.zshrc%f%b:"
print -P ""
print -lP -- ' %8F'${^comments}'%f' " %2Fsource%f %15F$zdu/$config_basename%f"
} "$@"