Skip to content

Instantly share code, notes, and snippets.

@andrzejkaszkowiak
Last active February 13, 2019 19:53
Show Gist options
  • Save andrzejkaszkowiak/23364f67fd137d26d1dc91944620f282 to your computer and use it in GitHub Desktop.
Save andrzejkaszkowiak/23364f67fd137d26d1dc91944620f282 to your computer and use it in GitHub Desktop.
Switch resolution on iMac (Pro) 5K
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display" to tell tab group 1
if (value of radio button "Scaled" of radio group 1) = 0 then
click radio button "Scaled" of radio group 1
click radio button 5 of radio group 1 of group 1
else
click radio button "Default for display" of radio group 1
end if
end tell
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display" to tell tab group 1
if (value of radio button "Scaled" of radio group 1) = 0 then
click radio button "Scaled" of radio group 1
select row 2 of table 1 of scroll area 1
else
click radio button "Default for display" of radio group 1
end if
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment