Simplify cursor position
This commit is contained in:
parent
17d17f4480
commit
fe8e15d5d6
7
neofetch
7
neofetch
|
@ -2918,10 +2918,9 @@ kdeconfigdir() {
|
|||
|
||||
dynamicprompt() {
|
||||
# Calculate image height in terminal cells.
|
||||
# The '+ 1' adds a gap between the prompt and the content.
|
||||
if [ "$image" != "ascii" ]; then
|
||||
lines="$((${height:-1} / ${font_height:-1} + 3))"
|
||||
cursor_yoffset="$((${yoffset:-1} / ${font_height:-1}))"
|
||||
lines="$((height / font_height))"
|
||||
cursor_yoffset="$((${yoffset:-1} / font_height))"
|
||||
else
|
||||
cursor_yoffset="0 - 2"
|
||||
fi
|
||||
|
@ -2942,7 +2941,7 @@ dynamicprompt() {
|
|||
fi
|
||||
|
||||
# Add some padding
|
||||
[ "$image" == "ascii" ] && printf "\n\n"
|
||||
printf "\n\n"
|
||||
}
|
||||
|
||||
# }}}
|
||||
|
|
Reference in New Issue