Commit 4619eba6 authored by Dylan Araps's avatar Dylan Araps

Don't do any dynamic prompt stuff in image off mode

parent 936f08e6
...@@ -2901,7 +2901,7 @@ kdeconfigdir() { ...@@ -2901,7 +2901,7 @@ kdeconfigdir() {
dynamicprompt() { dynamicprompt() {
# Calculate image height in terminal cells. # Calculate image height in terminal cells.
# The '+ 4' adds a gap between the prompt and the content. # The '+ 4' adds a gap between the prompt and the content.
[ "$image" != "ascii" ] && [ "$image" != "off" ] && \ [ "$image" != "ascii" ] && \
lines="$((${height:-1} / ${font_height:-1} + 4))" lines="$((${height:-1} / ${font_height:-1} + 4))"
# If the info is higher than the ascii/image place the prompt # If the info is higher than the ascii/image place the prompt
...@@ -3299,17 +3299,17 @@ main() { ...@@ -3299,17 +3299,17 @@ main() {
# Display the image if enabled # Display the image if enabled
displayimage displayimage
fi
# Set cursor position next to ascii art # Set cursor position next to ascii art
printf "\033[$((${lines:-4} - ${prompt_loc:-4}))A" printf "\033[$((${lines:-4} - ${prompt_loc:-4}))A"
# Reset horizontal cursor position # Reset horizontal cursor position
printf "\033[9999999D" printf "\033[9999999D"
fi
# Print the info # Print the info
printinfo printinfo
dynamicprompt [ "$image" != "off" ] && dynamicprompt
# Re-enable line wrap # Re-enable line wrap
printf "%b%s" "\033[?7h" printf "%b%s" "\033[?7h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment