Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created May 6, 2013 09:43
Show Gist options
  • Save rogeriopvl/5524242 to your computer and use it in GitHub Desktop.
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.
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