#!/bin/sh
for player in audacious noatun juk kaboodle beepmp xmms; do
    if [ -x "`which $player`" ]; then
        exec "$player" $@
        exit 0
    fi
done

