Created
May 6, 2013 09:43
-
-
Save rogeriopvl/5524242 to your computer and use it in GitHub Desktop.
AppleScript to toggle a VPN connection. Great to use as an Alfred workflow.
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
tell application "System Events" | |
tell current location of network preferences | |
set VPNservice to service "INSERT_VPN_NAME_HERE" | |
if exists VPNservice then set isConnected to connected of current configuration of VPNservice | |
if isConnected is false then | |
connect VPNservice | |
else | |
disconnect VPNservice | |
end if | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment