Tengo implementó una opción de conexión automática de VPN a través de Applescript [ver código]. Funciona como un encanto, solo hay un problema. Cada vez que abro mi MacBook recibo esta notificación [ver pantalla de impresión]. Unos segundos más tarde vuelve a conectarse como debería. ¿Cómo puedo evitar que aparezca esa notificación? Es muy molesto.
on idle
tell application "System Events"
tell current location of network preferences
set myConnection to the service "my vpn name"
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