3 # play the sound files specified.
5 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
8 #echo no sound file specified.
12 export PLAYCMD=/usr/bin/play
13 if [ ! -f "$PLAYCMD" ]; then
14 PLAYCMD='echo Unknown sound player...'
17 if [ ! -z "$(which afplay)" ]; then
18 #echo we see afplay available...
20 elif [ ! -z "$(psfind artsd)" ]; then
21 #echo we see artsd running...
23 elif [ ! -z "$(psfind esd)" ]; then
24 #echo we see esd running...
26 elif [ ! -z "$(psfind pulseaudio)" ]; then
27 #echo we see pulse running...
29 elif [ ! -z "$WINDIR" ]; then
30 #echo kludge for win32; we provide our own sound player.
33 echo "I don't know how to play sounds for this OS and sound system."
36 # play the sounds individually; playsound can handle multiple files, but
37 # "play" doesn't want to on some systems.
38 for i in $*; do $PLAYCMD $i >/dev/null 2>&1; done