mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-22 04:10:07 +00:00
unquote ID in /etc/os-release (#2388)
This commit is contained in:
parent
e8aa8cce7f
commit
1d96f5e066
2 changed files with 2 additions and 2 deletions
|
@ -9375,7 +9375,7 @@ if [[ $__p9k_dump_file != $__p9k_instant_prompt_dump_file && -n $__p9k_instant_p
|
||||||
zf_rm -f -- $__p9k_instant_prompt_dump_file{,.zwc} 2>/dev/null
|
zf_rm -f -- $__p9k_instant_prompt_dump_file{,.zwc} 2>/dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
typeset -g P9K_VERSION=1.19.3
|
typeset -g P9K_VERSION=1.19.4
|
||||||
unset VSCODE_SHELL_INTEGRATION
|
unset VSCODE_SHELL_INTEGRATION
|
||||||
|
|
||||||
_p9k_init_ssh
|
_p9k_init_ssh
|
||||||
|
|
|
@ -1126,7 +1126,7 @@ function os_icon_name() {
|
||||||
if [[ -r /etc/os-release ]]; then
|
if [[ -r /etc/os-release ]]; then
|
||||||
local lines=(${(f)"$(</etc/os-release)"})
|
local lines=(${(f)"$(</etc/os-release)"})
|
||||||
lines=(${(@M)lines:#ID=*})
|
lines=(${(@M)lines:#ID=*})
|
||||||
(( $#lines == 1 )) && os_release_id=${lines[1]#ID=}
|
(( $#lines == 1 )) && os_release_id=${(Q)${lines[1]#ID=}}
|
||||||
elif [[ -e /etc/artix-release ]]; then
|
elif [[ -e /etc/artix-release ]]; then
|
||||||
os_release_id=artix
|
os_release_id=artix
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue