Hier ist es:
/ usr / bin / osascript -e 'der Anwendung "Safari" mitteilen' -e "aktivieren" -e 'der Anwendung "Systemereignisse" mitteilen' -e 'Tastendruck "f" mit {control down, command down}' -e "beenden sag "-e" end sag "
Hier ist es in einer klareren Form (aber Sie können es nicht auf diese Weise ausführen):
/usr/bin/osascript -e "tell application \"Safari\""
-e "activate"
-e "tell application \"System Events\""
-e "keystroke \"f\" using {control down, command down}"
-e "end tell"
-e "end tell"
Und das ist es als formatiertes AppleScript:
tell application "Safari"
activate
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
end tell
Es funktioniert, indem zuerst ein Safari-Fenster geöffnet wird, wenn eines zurzeit nicht geöffnet ist. Dann simuliert er den Control ⌃- Command ⌘- FTastendruck , die das Safari - Fenster zeigt voller Umfang nutzen zu werden.
Wenn Sie das Fenster auf die maximale Größe bringen möchten, kann dies ohne Vollbild erfolgen (dh den gesamten Platz unter der Menüleiste oben einnehmen):
tell application "Finder"
set desktopSize to bounds of window of desktop
end tell
tell application "Safari"
activate
set bounds of window 1 to desktopSize
end tell
Was würde das im Terminal werden:
/ usr / bin / osascript -e "tell application \" Finder \ "-e" Desktopgröße auf Fenstergrenzen setzen "-e" end tell "-e" tell application \ "Safari \" -e "aktivieren "-e" setzt die Grenzen von Fenster 1 auf desktopSize "-e" end tell "
Führen Sie für Chrome Folgendes aus:
tell application "Google Chrome"
activate
make new window
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
end tell
So wäre es im Terminal:
/ usr / bin / osascript -e "tell application \" Google Chrome \ "-e" activate "-e" make new window "-e" tell application \ "System Events \" -e "keystroke \" f \ "mit {control down, command down}" -e "end tell" -e "end tell"
Hoffe das hilft!