# /etc/rc.d/init.d/sfont # # Load Soundfonts # if [ ! -x /usr/bin/asfxload ]; then echo "sfxload missing, install package awesfx" exit 1 fi # # See how we were called. # case "$1" in start) echo -n "Loading Soundfonts: " # Make sure te module is loaded /sbin/modprobe snd-emu10k1-synth /usr/bin/asfxload -i for f in `ls /usr/share/sounds/sf2/*.sf2` do /usr/bin/asfxload -N $f echo -n "." done echo " done." ;; stop) echo -n "Removing Soundfonts: " /usr/bin/asfxload -i echo "done." ;; reload|restart) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart|reload}" exit 1 esac exit 0