I am trying to configure Alfred to open my terminal, Sublime Text and Chrome using a workflow.
I would like my terminal to open normally as a window, but I tried to get Chrome and Sublime to open full screen.
I managed to open Chrome in full screen using
on alfred_script(q)
tell application "Google Chrome"
tell window 1 to enter presentation mode
end tell
end alfred_script
However, this did not result in working with my Sublime Text.
What am I missing here?
source
share