Image: Fix issue where '--image ascii' didn't work
This commit is contained in:
parent
4b4426f3ff
commit
19a6357ce9
1 changed files with 1 additions and 1 deletions
2
neofetch
2
neofetch
|
@ -3169,7 +3169,7 @@ get_args() {
|
|||
# Image
|
||||
"--image")
|
||||
image_source="$2"
|
||||
case "$2" in "-"* | "") image_backend="ascii" ;; esac
|
||||
case "$2" in "-"* | "" | "ascii") image_backend="ascii" ;; esac
|
||||
;;
|
||||
|
||||
"--image_size" | "--size") image_size="$2" ;;
|
||||
|
|
Loading…
Reference in a new issue