Sophie

Sophie

distrib > Mageia > 6 > armv7hl > media > core-updates-src > by-pkgid > 433b4553d08bedca8e02e6e6ae3bd100 > files > 4

ncurses-6.0-8.3.mga6.src.rpm

#!/bin/sh

# Xterm codes can be found here: 
# http://babayaga.math.fu-berlin.de/~rxvt/refer/refer.html
if [    a"$TERM" = axterm -o a"$TERM" = axterm-color -o \
        a"$TERM" = akterm -o a"$TERM" = arxvt ]; then
        # Disable X11 XTerm mouse reporting
        echo '[?1000l'
        
        # Reset foreground and background colors
        echo ''
fi

# Reset the terminal
/usr/bin/reset

# Reset terminal size
if [ -f /usr/X11R6/bin/resize ]; then
        eval `resize`
fi