#!/bin/sh

APP=xchat

if [ $# -eq 2 ] ; then
  $APP "$2" &
else
  $APP &
fi
