#! /bin/sh
#
# xfmstart - wrapper to start xfm under /bin/sh since it misbehaves
#            when started from bash. Brett Wynkoop (wynkoop@wynn.com)
#
# modification history
#  96/08/29 - Added the REALSHELL var to the env to allow xterms to
#             pop up with the user's real shell instead of /bin/sh [BEW]
#
#########################################################################

PATH=$PATH:/usr/X11/bin:/usr/local/bin:/usr/bin/X11:/usr/local/bin/X11
REALSHELL=$SHELL
SHELL=/bin/sh
export PATH SHELL REALSHELL

exec xfm $* &
