############################################ # DESCRIPTION: Fix the volume issue: # # volume set to max after waking from # # sleep with VoodooHDA. # # ---------------------------------------- # # VERSION: v.1.0 # # ---------------------------------------- # # AUTHOR: Thireus # # ---------------------------------------- # # INFO: http://thireus.dareyourmind.net # ############################################ /usr/bin/osascript <<-EOF set Mut to output muted of (get volume settings) set Vol to output volume of (get volume settings) if Mut then set volume output muted true set volume output muted false else if Vol is 0 then set volume output muted true set volume output muted false else set volume output volume Vol-1 set volume output volume Vol end if end if EOF