Last active
August 29, 2015 14:15
-
-
Save MichaelBlume/024c0add54ffe61ea1d4 to your computer and use it in GitHub Desktop.
don't let me leave tethering on when I don't need it
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
#!/usr/bin/env bash | |
wifis=`/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -s` | |
hwwifis=`echo "$wifis" | grep "Climate\|Volterra"` | |
tether=`echo "$wifis" | grep "Mike"` | |
if [ -n "$hwwifis" ] && [ -n "$tether" ]; then | |
growlnotify -s -m "stop tethering" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment