Skip to content

Instantly share code, notes, and snippets.

@Sahil
Created June 2, 2013 00:13
Show Gist options
  • Save Sahil/5692136 to your computer and use it in GitHub Desktop.
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
#!/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