Ini dia:
/ usr / bin / osascript -e 'kirim aplikasi "Safari"' -e "aktifkan" -e 'kirim aplikasi "System Events"' -e 'keystroke "f" menggunakan {control down, command down}' -e "end katakan "-e" dan katakan "
Ini dia dalam bentuk yang lebih jelas (tetapi Anda tidak bisa menjalankannya dengan cara ini):
/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"
Dan ini dia sebagai AppleScript yang diformat:
tell application "Safari"
activate
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
end tell
Ini bekerja dengan terlebih dahulu membuka jendela Safari jika saat ini tidak ada yang terbuka. Kemudian ia mensimulasikan Control ⌃- Command ⌘- Fkeystroke yang memberitahu jendela Safari menjadi layar penuh.
Jika Anda ingin menjadikan jendela ukuran maksimumnya, tanpa menjadi layar penuh (mis., Gunakan semua ruang di bawah bilah menu di bagian atas):
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
Yang akan menjadi ini di Terminal:
/ usr / bin / osascript -e "kirim aplikasi \" Finder \ "" -e "atur desktopSize ke batas jendela desktop" -e "end tell" -e "kirim aplikasi \" Safari \ "" -e "aktifkan "-e" atur batas jendela 1 ke desktopSize "-e" end tell "
Untuk Chrome, lakukan ini:
tell application "Google Chrome"
activate
make new window
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
end tell
Jadi begini di Terminal:
/ usr / bin / osascript -e "kirim aplikasi \" Google Chrome \ "" -e "aktifkan" -e "buat jendela baru" -e "beri tahu aplikasi \" Acara Sistem \ "" -e "keystroke \" f \ "Menggunakan {control down, command down}" -e "end tell" -e "end tell"
Semoga ini membantu!