Last active
January 9, 2020 08:55
-
-
Save Joilence/17bcc5f95b9e7b41a3e6a390824afc2d to your computer and use it in GitHub Desktop.
Toggle WiFi on macOS
This file contains 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
set status to do shell script "networksetup -getairportpower en0" | |
if status ends with "On" then | |
do shell script "networksetup -setairportpower en1 off" | |
else | |
do shell script "networksetup -setairportpower en1 on" | |
end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment