e4270049 MG |
1 | #!/bin/sh |
2 | |
3 | PLAYER=true |
4 | |
5 | if [ -x "`which aplay`" ]; then |
6 | PLAYER=aplay |
7 | elif [ -x "`which play`" ]; then |
8 | PLAYER=play |
9 | elif [ -x "`which mplayer`" ]; then |
10 | PLAYER="mplayer -nogui -nocache" |
11 | fi |
12 | |
13 | exec ${PLAYER} "$@" >/dev/null 2>&1 |