Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dzuelke/aec58a536a3f21054cc977e4abe68267 to your computer and use it in GitHub Desktop.
Save dzuelke/aec58a536a3f21054cc977e4abe68267 to your computer and use it in GitHub Desktop.
Mac Automator workflow to toggle screen mirroring on 13" MBP so that internal LCD is always 1440x900 retina
on run {input, parameters}
tell application "Display Menu"
toggle mirroring
select resolution "1440 x 900 Retina" on display "Color LCD"
end tell
return input
end run
@Paul-B
Copy link

Paul-B commented Aug 31, 2019

Just what I was looking for, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment