Se si desidera aprire nuove finestre a schermo intero per impostazione predefinita, non conosco alcun modo per farlo in generale, ma ci sono opzioni per esso in alcune applicazioni come iTerm 2, VLC e WriteRoom.
Potresti anche assegnare un scorciatoia da tastiera per uno script come questo:
tell application "Terminal"
reopen -- open a new default window if there are open default windows
set w to number of windows
end tell
tell application "System Events" to tell process "Terminal"
if number of windows is w then -- if there are no full screen windows
perform action "AXPress" of (button 1 where subrole is "AXFullScreenButton") of window 1
end if
end tell
activate application "Terminal" -- make Terminal frontmost
Per automatizzare l'apertura di una finestra a schermo intero all'accesso, potresti usare uno script come questo:
set old to window 1
tell application "Terminal"
reopen
end tell
tell application "System Events" to tell process "Terminal"
perform action "AXPress" of (button 1 where subrole is "AXFullScreenButton") of window 1
end tell
delay 1.5
activate old