Si vous voulez ouvrir les nouvelles fenêtres en plein écran par défaut, je ne connais pas de moyen de le faire en général, mais il y a des options pour cela dans certaines applications comme iTerm 2, VLC, et WriteRoom.
Vous pouvez également assigner un raccourci clavier à un script comme ça :
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
Pour automatiser l'ouverture d'une fenêtre en plein écran à la connexion, vous pourriez utiliser un script comme ceci :
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