Created
February 14, 2018 13:35
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just what I was looking for, thanks!