OSX/launchctl: 毎朝、フォアグラウンドで Chrome の新しいインスタンスで特定の Web サイトを開くにはどうすればよいですか?

OSX/launchctl: 毎朝、フォアグラウンドで Chrome の新しいインスタンスで特定の Web サイトを開くにはどうすればよいですか?

要件:

  1. 特定のウェブサイト
  2. 毎朝、ラップトップが夜間に閉じられているにもかかわらず (launchctl はこれを処理できます)
  3. フォアグラウンド - 複数のスペース/デスクトップがある場合でも、注意を払う必要があります
  4. Chrome の新しいインスタンス (必須ではないが、推奨)

open http://superuser.comChromeがまだ開いていないデスクトップ/スペースで試してみると、3.と4.のケースが失敗します。何が起こるかというと、既存のChromeインスタンス内でタブが開きます。別のスペース/デスクトップをバックグラウンドで静かに実行します。

答え1

これが私が思いついたものです。思っていたよりも簡単でした。

シェル スクリプト 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 

作成する/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>

launchctlに追加:

launchctl load -w /Library/LaunchDaemons/daily_goals.plist

要約すると、これは毎朝 7 時に新しく開いた Chrome インスタンスで joesgoals.com を起動します。ラップトップが 7 時にスリープ状態の場合、ラップトップがスリープから復帰すると JoesGoals が開きます。異なるデスクトップ/スペース (Chrome の有無にかかわらず) で osx を再開するときに問題が見つかった場合は、後で更新します。問題にならないことを願っています。

関連情報