#!/bin/sh

XULRUNNER=$(which xulrunner)

if [ -z "${XULRUNNER}" ]; then 
	echo Unable to locate xulrunner binary.
elif [ ! -x "${XULRUNNER}" ]; then
	echo ${XULRUNNER} is not executable.
else
	exec ${XULRUNNER} /usr/local/share/conkeror/application.ini "$@"
fi

