X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/micropolis/blobdiff_plain/e4270049e4e0cefa1d3784d4215a23e53fe5e929..851812f3fc226d30b4dc26ba147977e9511a82ee:/res/sounds/player diff --git a/res/sounds/player b/res/sounds/player index 7784940..af26836 100755 --- a/res/sounds/player +++ b/res/sounds/player @@ -1,6 +1,6 @@ -#!/bin/sh +#!/bin/bash -PLAYER=true +PLAYER= if [ -x "`which aplay`" ]; then PLAYER=aplay @@ -10,4 +10,13 @@ elif [ -x "`which mplayer`" ]; then PLAYER="mplayer -nogui -nocache" fi -exec ${PLAYER} "$@" >/dev/null 2>&1 +if [ "x${PLAYER}" = "x" ]; then + echo "Can't find audio player!" + echo "Please make sure you have aplay, play or mplayer in your path." + if [ "`uname`" = "Darwin" ]; then + echo "A working play for OS X is available from:" + echo "http://www.hieper.nl/html/play.html" + fi +else + exec ${PLAYER} "$@" >/dev/null 2>&1 +fi