Skip to content

Instantly share code, notes, and snippets.

@alana314
Created March 21, 2019 17:59
Show Gist options
  • Save alana314/bffa2e6cdbf248f8c558ba6496dcc7ea to your computer and use it in GitHub Desktop.
Save alana314/bffa2e6cdbf248f8c558ba6496dcc7ea to your computer and use it in GitHub Desktop.
Test if headphones are plugged in -- OS X shell script
#!/bin/bash
if system_profiler SPAudioDataType | grep --quiet Headphones; then
echo plugged in
else
echo not plugged in
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment