Skip to content

Instantly share code, notes, and snippets.

@chancez
Forked from redolent/renice-audio.sh
Last active October 12, 2019 16:09
Show Gist options
  • Save chancez/41e9a286adcf4b3740ed1a08c9b8c93f to your computer and use it in GitHub Desktop.
Save chancez/41e9a286adcf4b3740ed1a08c9b8c93f to your computer and use it in GitHub Desktop.
Fix Bluetooth Audio on Mac
#!/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