Created
June 2, 2013 00:13
-
-
Save Sahil/5692136 to your computer and use it in GitHub Desktop.
Kill coreaudiod process to fix issue with 10.8 where AirPlay refuses to be selected as the desired audio output source. this is far better than restart your router or computer (which so far have seemed to be the only other options). This works with my MBP 13" Retina + ATV3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment