#!/bin/sh

# you can specify your default editor and default webbrowser here
# if you omit these variables, the defaults are "vi" and "netscape"
# as shown

export EDITOR BROWSER

EDITOR=${EDITOR:-"xterm -e vi"}
BROWSER=${BROWSER:-netscape}

# specify your default printer name.  If omitted, the tool will ask.

export PRINTER

PRINTER=${PRINTER:-lp}

# some last minute release notes

cat <<EOF
---------------------------------------------------------------------------
|
| Welcome to JVISION 1.2.1 NON-COMMERCIAL for `uname`!
|
| Have fun!
|
---------------------------------------------------------------------------
EOF

#call the program

$0.vm 2>/dev/null $0.im "$@"

