Images: Fix unknown image backend fallback
This commit is contained in:
parent
08dfd49d04
commit
b41a75609e
1 changed files with 7 additions and 7 deletions
14
neofetch
14
neofetch
|
@ -1965,9 +1965,9 @@ image_backend() {
|
||||||
get_image_program
|
get_image_program
|
||||||
|
|
||||||
if type -p "$image_program" >/dev/null 2>&1; then
|
if type -p "$image_program" >/dev/null 2>&1; then
|
||||||
err "Image: Drawing images using $image_program"
|
err "Image: Drawing images using '$image_program'."
|
||||||
else
|
else
|
||||||
to_ascii "Image: Failed to find image program '$image_program'"
|
to_ascii "Image: Failed to find image program '$image_program'."
|
||||||
err "Image: Falling back to ascii mode."
|
err "Image: Falling back to ascii mode."
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
@ -1979,8 +1979,8 @@ image_backend() {
|
||||||
zws=" "
|
zws=" "
|
||||||
else
|
else
|
||||||
unset image_program
|
unset image_program
|
||||||
to_ascii "Image: Failed to find terminal window size"
|
to_ascii "Image: Failed to find terminal window size."
|
||||||
err "Image: Check the 'Images in the terminal' wiki page for more info"
|
err "Image: Check the 'Images in the terminal' wiki page for more info,"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -1990,10 +1990,10 @@ image_backend() {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
image_backend="off"
|
err "Image: Unknown image backend specified '$image_backend'."
|
||||||
err "Image: Unknown image backend specified. ($image_backend)"
|
|
||||||
err "Image: Valid backends are: 'iterm2', 'w3m'. 'tycat', 'ascii', 'off'"
|
err "Image: Valid backends are: 'iterm2', 'w3m'. 'tycat', 'ascii', 'off'"
|
||||||
err "Image: Falling back to off mode."
|
err "Image: Falling back to ascii mode."
|
||||||
|
get_ascii
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue