1

Mission Control の Mojave 10.14 の標準設定では、「ディスプレイは別のスペースを使用する」がチェックされています。

チェックを外してほしい…

applescript/osascriptでこれを行う方法はありますか?

これは私が試したものですが、チェックボックスをクリックしていません..

if application "System Preferences" is running then quit application 
"System Preferences"
repeat until application "System Preferences" is not running
    delay 0.1
end repeat
tell application "System Preferences" to reveal pane id "com.apple.preference.expose"

tell application "System Events" to tell process "System Preferences" to 
tell window "Mission Control"
    repeat while not (exists of checkbox "Displays have separate Spaces")
        delay 0.1
    end repeat
    click checkbox "Displays have separate Spaces"
end tell

quit application "System Preferences"
4

1 に答える 1