#!/bin/sh
# use the technique of soundwrapper to try and call an appropriate player
# Stew Benedict <sbenedict@mandrakesoft.com>

if [ `/sbin/pidof -s artsd` ] ; then
	artsplay "$@"
else
	if [ `/sbin/pidof -s esd` ]; then
		esdplay "$@"
	else
		play "$@"
	fi
fi
