-
-
Save chancez/41e9a286adcf4b3740ed1a08c9b8c93f to your computer and use it in GitHub Desktop.
Fix Bluetooth Audio on Mac
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 | |
list="$( | |
sudo ps -A \ | |
| grep -iE '(spotify|chrome|blue|coreaudiod)' \ | |
| cut -c 1-90 | |
)" | |
pids=$( cut -c 1-6 <<< "$list" ) | |
echo sudo renice -5 $pids | |
sudo renice -5 $pids |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment