Skip to content

Instantly share code, notes, and snippets.

@midwire
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save midwire/9f455fd1cc213d556543 to your computer and use it in GitHub Desktop.
Save midwire/9f455fd1cc213d556543 to your computer and use it in GitHub Desktop.
Stay connected to your VPN...
# Change service (VPN) name to the name of your configured VPN service
on idle
tell application "System Events"
tell current location of network preferences
set myConnection to the service "RentPath"
if myConnection is not null then
if current configuration of myConnection is not connected then
connect myConnection
end if
end if
end tell
return 120
end tell
end idle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment