İşte burada:
/ usr / bin / osascript -e 'söyle uygulama "Safari"' -e "etkinleştir" -e 'söyle uygulama "Sistem Olayları"' -e 'tuş vuruşu "f" {control down, command down}' -e "end kullanarak söyle "-e" son söyle "
Burada daha net bir formda (ancak bu şekilde çalıştıramazsınız):
/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"
Ve bu biçimlendirilmiş AppleScript olarak:
tell application "Safari"
activate
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
end tell
Şu anda açık değilse, önce bir Safari penceresi açarak çalışır. Ardından Safari penceresine tam ekran olmasını söyleyen Control ⌃- Command ⌘- Ftuş vuruşunu simüle eder .
Pencereyi tam ekran haline getirmeden maksimum boyutta yapmak istiyorsanız (örn. Üstteki menü çubuğunun altındaki tüm alanı kaplamak):
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
Hangisi Terminal'de bu olur:
/ usr / bin / osascript -e "uygulamaya söyle \" Finder \ "" -e "desktopSize değerini masaüstü" -e "sonunun penceresinin sınırlarına ayarla" -e "söyle uygulama \" Safari \ "" -e "etkinleştir "-e" pencere 1'in sınırlarını desktopSize olarak ayarla "-e" end tell "
Chrome için şunları yapın:
tell application "Google Chrome"
activate
make new window
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
end tell
Terminal'de şu olurdu:
/ usr / bin / osascript -e "uygulamayı söyle \" Google Chrome \ "" -e "etkinleştir" -e "yeni pencere yap" -e "uygulamayı söyle \" Sistem Olayları \ "" -e "tuş vuruşu \" f \ "{control down, command down}" kullanarak -e "son söyle" -e "son söyle"
Bu yardımcı olur umarım!