Clear screen later

This commit is contained in:
Dylan Araps 2016-10-01 12:57:54 +10:00
parent 2b7ff346db
commit 070843d2bf
1 changed files with 2 additions and 6 deletions

View File

@ -2085,6 +2085,8 @@ getimage() {
[ "${#term_size}" -le 5 ] && err "Your terminal doesn't support \\\033[14t, falling back to ascii mode."
return
else
clear
fi
# Get terminal lines and columns
@ -3127,12 +3129,6 @@ main() {
# If the script exits for any reason, unhide the cursor.
trap 'printf "\033[?25h"' EXIT
# Clear the screen
case "$image" in
"ascii" | "off") ;;
*) clear ;;
esac
# Hide the cursor and disable line wrap
printf "\033[?25l\033[?7l"