He estado intentando modificar la siguiente secuencia de comandos para lograr esto. (guión original)
tell application "Power Manager Scripting"
tell workshop
set myEvent to make new event with properties {id:"myWakeEvent", name:"Wake up for work"}
-- Create a daily trigger
make new trigger daily at front of triggers of myEvent with properties {seconds from midnight:(8 * 60 * 60),availability:wake up, days: [Monday, Tuesday, Wednesday, Thursday, Friday]}
end tell
-- Deploy the event
tell Event Store to store these events myEvent
-- Clean up
tell the workshop to empty
end tell
Estoy intentando usar el "myWakeEvent" de Power Manager o algún tipo de WakeEvent para que mi Mac se active. Mi intención es colocar este script en una acción de carpeta y luego ir desde allí. He intentado omitir todas las propiedades de fecha y hora pero no sé cómo estructurar para crear solo el activador simple.