#! /bin/sh
# File /bin/xpi
# Launch vga X window running pi
if test "$DISPLAY" = ""; then
 echo "DISPLAY not set for X-windows. Aborted xpi."
else
 xterm -fn 9x15 -geometry 80x25+10+2 -e v.exe -x -term:vt100internal "$@" &
fi
