#! /bin/sh
# File /bin/xpi
# Launch vga X window running pi
if test "$DISPLAY" = ""; then
 echo "DISPLAY not set for X-windows. Using rxvt and iso8859-2 font."
 rxvt -fn '-b&h-lucidatypewriter-bold-r-normal-sans-12-120-75-75-m-70-iso8859-2'  -fg black -bg yellow -e pi -x -term:xterm "$@" &
else
 rxvt -fn '-b&h-lucidatypewriter-bold-r-normal-sans-12-120-75-75-m-70-iso8859-2' -fg black -bg yellow -e pi -x -term:xterm "$@" &
fi
