AppleScript を作成しましたが、launchd を使用して起動時に実行できるように、それを osascript に変換したいと考えています。これを osascript に変換する方法はありますか、それともスクリプト全体を osascript として書き直す必要がありますか? それができない場合、少なくともターミナルで osascript として実行する方法はありますか? ありがとうございました!
on idle
tell application "System Events" to ¬
if exists process "Launchpad" then run script
tell application "Launchpad"
delay 0
tell application "System Events" to keystroke "b" using {control down, option down, command down}
delay 0
tell application "System Events" to keystroke "b" using {control down, option down, command down}
delay 0
tell application "System Events" to keystroke "b" using {control down, option down, command down}
delay 0
end tell
end idle