Fix w3m-img being used even when images were off
This commit is contained in:
parent
1993f22ec6
commit
c869e81e3b
12
neofetch
12
neofetch
|
@ -3381,11 +3381,15 @@ main() {
|
|||
|
||||
# Print the info
|
||||
printinfo
|
||||
[ "$image" != "off" ] && dynamicprompt
|
||||
|
||||
# w3m-img: Draw the image a second time to fix
|
||||
# rendering issues in specific terminal emulators.
|
||||
[ "$image_backend" == "w3m" ] && displayimage
|
||||
# Prompt calculation
|
||||
if [ "$image" != "off" ]; then
|
||||
dynamicprompt
|
||||
|
||||
# w3m-img: Draw the image a second time to fix
|
||||
# rendering issues in specific terminal emulators.
|
||||
[ "$image_backend" == "w3m" ] && displayimage
|
||||
fi
|
||||
|
||||
# Re-enable line wrap
|
||||
printf "%b%s" "\033[?7h"
|
||||
|
|
Reference in New Issue