Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > media > main-src > by-pkgid > 642addacffa564bb7370b20a6dab01da > files > 13

ncurses-5.3-1.20030215.1mdk.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