#!/bin/csh ############################################################### # The sound card I am using has a stupid stupid bug, in both # Windows and Linux. When it plays a new sound, it first # burps out the first bit of the last sound it played, including # both songs and system sounds. How annoying. So, I put this # in here to turn down the volume and play the burp quietly. # # It then the volume using a stored settings file that I like. ############################################################## aumix -v0 set dir = `musicbox_sounds_directory.txt` play "$dir"/quietburst.wav musicbox_set_volume.txt exit 0