mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-22 23:21:57 +00:00
Fix for #974
This commit is contained in:
parent
358c105de7
commit
735994f82e
1 changed files with 3 additions and 1 deletions
|
@ -102,7 +102,9 @@ case $(uname) in
|
||||||
;;
|
;;
|
||||||
Linux)
|
Linux)
|
||||||
OS='Linux'
|
OS='Linux'
|
||||||
|
if [ -f /etc/os-release ]; then
|
||||||
os_release_id="$(grep -E '^ID=([a-zA-Z]*)' /etc/os-release | cut -d '=' -f 2)"
|
os_release_id="$(grep -E '^ID=([a-zA-Z]*)' /etc/os-release | cut -d '=' -f 2)"
|
||||||
|
fi
|
||||||
case "$os_release_id" in
|
case "$os_release_id" in
|
||||||
*arch*)
|
*arch*)
|
||||||
OS_ICON=$(print_icon 'LINUX_ARCH_ICON')
|
OS_ICON=$(print_icon 'LINUX_ARCH_ICON')
|
||||||
|
|
Loading…
Reference in a new issue