有没有简单的方法可以让 Snow Leopard(版本 3.1.0)上的 iSync 软件每 x 分钟自动同步一次?
我已将其设置为与 Google 联系人同步(在 Gmail 中),但我希望它在后台自动运行。
答案1
您可以设置 Apple 脚本来自动告诉 iSync 进行同步。
tell application "iSync"
if not syncing then
synchronize
repeat while syncing
delay 1
end repeat
quit
end if
end tell
使用 Automator 工作流程将其设置为按周期运行。