#!/bin/sh
#
# console -- set up console fonts, colors, and whatnot

. /etc/rc.d/sysconfig

case "$1" in
start)
    need filesystems

    # set up the screensaver
    #
    setterm -blank 15

    # load the console font (/etc/rc.d/functions/load-console-font)
    load-console-font

    # change screen colors
    #
    for i in /dev/tty[0-9a-c]; do
	setterm -foreground cyan -bold on -store > $i < $i
    done
    ;;

info)
    echo "Configure the console"
    ;;

stop)
    ;;
*)
    echo "usage: $0 {start|stop}"
    ;;
esac
