#!/bin/sh
# .xsession: A wrapper script to run init/xsession in bash, if we can
# This script will never run more than once at a time, so the ugly
# locking that didn't really work in .profile doesn't have to be here.

SHELL=`/mit/dmaze/init/findbash`
if [ -z "$SHELL" ]; then SHELL=/bin/sh; fi
$SHELL /mit/dmaze/init/xsession
