# Set terminal size for cater
#
# Copy this file to /etc/profile.d/
# or instert it into /etc/profile
# or into ~/.profile
#
# The terminal size for a serial
# terminal is 0x0 by default. This
# shell script sets it correctly to
# 40x25. 

if [ "$TERM" = cater ]; then
    export LINES=25
    export COLUMNS=40
    #export LANG=C
    export LANG=de_DE@euro
    stty rows $LINES columns $COLUMNS
fi

# vim: set syntax=sh tw=39:
