Skip to content

Instantly share code, notes, and snippets.

@jermspeaks
Created December 20, 2018 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jermspeaks/e16ff7025d9c3ec3a849b82ddd70f561 to your computer and use it in GitHub Desktop.
Save jermspeaks/e16ff7025d9c3ec3a849b82ddd70f561 to your computer and use it in GitHub Desktop.
Switch Audio on OSX
# brew install switchaudio-osx
headphoneson() {
SwitchAudioSource -t "input" -s "<NAME OF DEVICE>"
SwitchAudioSource -t "output" -s "<NAME OF DEVICE>"
}
headphonesoff() {
SwitchAudioSource -t "input" -s "MacBook Pro Microphone"
SwitchAudioSource -t "output" -s "MacBook Pro Speakers"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment