#!/bin/bash echo "Playing startup tune.." G4='-f 392.00' C5='-f 523.25' E5='-f 659.26' G5='-f 783.99' whole='-l 2048' dottedhalf='-l 1536' half='-l 1024' dottedquarter='-l 768' quarter='-l 512' dottedeighth='-l 384' eighth='-l 256' sixteenth='-l 128' smallspace='-D 64' longspace='-D 128' beep \ $dottedeighth $G4 $smallspace -n \ $sixteenth $G4 $smallspace -n \ $dottedhalf $C5 $longspace -n \ $dottedeighth $G4 $smallspace -n \ $sixteenth $C5 $smallspace -n \ $dottedhalf $E5 $longspace -n \ $dottedeighth $G4 $smallspace -n \ $sixteenth $C5 $smallspace -n \ $quarter $E5 $smallspace -n \