動機
Webの管理画面やJenkins、Trelloなどの画面をオフィスのメンバーで共有し、タスク管理を効率化したいと思いました。
概要
下準備
Mac miniとApple TV、それに大型モニタを活用して、Safariの画面をモニタに映します。
スクリプト
tell application "Safari"
repeat
repeat with i from (count of tabs of window 1) to 1 by -1
set thisTab to tab i of window 1
set current tab of window 1 to thisTab
delay 30
set sameURL to URL of current tab of front window
set URL of current tab of front window to sameURL
delay 30
end repeat
end repeat
end tell
結果
これで共有モニターに重要な情報を常時表示しておくことができます。
不明な点
ChromeやFirefoxで同じことができるのかは知りません。やったことがある人がいたら教えてください。