Merge pull request #552 from dylanaraps/minixfix

General: [Minix] Fix unsupported escape sequences in Minix.
This commit is contained in:
Dylan Araps 2016-12-20 19:49:02 +11:00 committed by GitHub
commit 5fbab59748
1 changed files with 7 additions and 4 deletions

View File

@ -3338,11 +3338,14 @@ main() {
get_bold
get_distro_colors
# If the script exits for any reason, unhide the cursor.
trap 'printf "\033[?25h\033[?7h"' EXIT
# Minix doesn't support these sequences.
if [[ "$TERM" != "minix" ]]; then
# If the script exits for any reason, unhide the cursor.
trap 'printf "\033[?25h\033[?7h"' EXIT
# Hide the cursor and disable line wrap
printf "\033[?25l\033[?7l"
# Hide the cursor and disable line wrap
printf "\033[?25l\033[?7l"
fi
get_image_backend
old_functions