Requisitos:
- Sitio web específico
- Todas las mañanas a pesar de que la computadora portátil estuvo cerrada durante la noche (launchctl puede manejar esto)
- Primer plano: debe llamar mi atención, incluso si tengo varios espacios/escritorios
- Nueva instancia de Chrome (no necesaria, pero preferible)
Cuando lo intento open http://superuser.com
en un escritorio/espacio que no tiene Chrome abierto, veo que falla en los casos 3. y 4. Lo que sucede es que se abre una pestaña dentro de una instancia de Chrome existente enotroespacio/escritorio silenciosamente en segundo plano.
Respuesta1
Esto es lo que se me ocurrió. Fue más simple de lo que pensaba.
Cree el script de shell daily_goals.sh:
#!/bin/bash
# this is needed to launch Chrome as a new window. Since it's a new window, it will open in the foreground in current space/desktop.
open -n -a Google\ Chrome
# this sleeps for 1 second. It's necessary because otherwise the website, called below, will open in existing Chrome window, which may be located in another desktop. I think sleeping lets the next `open` call find the newly opened Chrome window, and replace the new tab with the provided website.
sleep 1
# the website I provided.
open http://joesgoals.com
Crear /Library/LaunchDaemons/daily_goals.plist
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>daily_goals</string>
<key>ProgramArguments</key>
<array>
<string>/Users/user/Work/daily_goals.sh</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>07</integer>
<key>Minute</key>
<integer>00</integer>
</dict>
</dict>
</plist>
Agregar a launchctl:
launchctl load -w /Library/LaunchDaemons/daily_goals.plist
En resumen, esto inicia joesgoals.com todas las mañanas a las 7 a.m. en una instancia de Chrome recién abierta. Si la computadora portátil está inactiva a las 7 a. m., debería abrir JoesGoals cuando la computadora portátil se reanude desde la suspensión. Actualizaré más tarde si veo alguna peculiaridad al reanudar OSX en diferentes escritorios/espacios (con o sin Chrome). Esperando que no sea un problema.