Created
March 9, 2012 11:49
-
-
Save maxkandler/2006223 to your computer and use it in GitHub Desktop.
Connects / Disconnects to a VPN and pushes its action to Growl
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
-- config: change the VPN name here (as listed under the network preferences) | |
set VPNname to "LRZ VPN" | |
tell application "System Events" | |
set isGrowlRunning to (count of (every process whose bundle identifier is "com.Growl.GrowlHelperApp")) > 0 | |
end tell | |
if isGrowlRunning then | |
tell application id "com.Growl.GrowlHelperApp" | |
set the allNotificationsList to ¬ | |
{"Connection Status"} | |
set the enabledNotificationsList to ¬ | |
{"Connection Status"} | |
register as application ¬ | |
"VPN Connector" all notifications allNotificationsList ¬ | |
default notifications enabledNotificationsList ¬ | |
icon of application "Network Utility" | |
end tell | |
end if | |
tell application "System Events" | |
tell current location of network preferences | |
set VPNservice to service VPNname | |
if exists VPNservice then set isConnected to connected of current configuration of VPNservice | |
if isConnected is false then | |
connect VPNservice | |
if isGrowlRunning then | |
tell application id "com.Growl.GrowlHelperApp" | |
notify with name ¬ | |
"Connection Status" title ¬ | |
"Start VPN" description ¬ | |
"Verbindung wird hergestellt" application name "VPN Connector" with sticky | |
delay 2 | |
close all notifications | |
end tell | |
end if | |
else | |
disconnect VPNservice | |
if isGrowlRunning then | |
tell application id "com.Growl.GrowlHelperApp" | |
notify with name ¬ | |
"Connection Status" title ¬ | |
"Stop VPN" description ¬ | |
"Verbindung wird beendet" application name "VPN Connector" with sticky | |
delay 2 | |
close all notifications | |
end tell | |
end if | |
end if | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment