我正在尝试对 Alfred 进行编程,以使用工作流程打开我的终端、Sublime Text 和 Chrome。
我想让我的终端作为一个窗口正常打开,但我一直在尝试让 Chrome 和 Sublime 全屏打开。
我能够让 Chrome 以全屏模式打开:
on alfred_script(q)
tell application "Google Chrome"
tell window 1 to enter presentation mode
end tell
end alfred_script
但是,这并不能与我的 Sublime Text 一起使用。
我在这里想念什么?