Skip to content

Instantly share code, notes, and snippets.

@tomterragni
Last active June 3, 2022 11:31
Show Gist options
  • Select an option

  • Save tomterragni/7ddb761be3e7521dda84db6e941bf6a6 to your computer and use it in GitHub Desktop.

Select an option

Save tomterragni/7ddb761be3e7521dda84db6e941bf6a6 to your computer and use it in GitHub Desktop.
Restart the coreaudio service
#!/bin/bash
# Sometimes the coreaudio service freezes on Macbook Pro and requires restarting.
pid=`ps ax | grep 'coreaudio[a-z]' | awk '{print $1}'`
sudo kill $pid
sudo -k
echo 'The coreaudio service will restart shortly...'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment