Created
December 3, 2012 17:28
-
-
Save metaphox/4196550 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/sh | |
| # | |
| # This shows a MacBook Pro Retina screen model number. | |
| # The modile number will be something like LP154YL01001. | |
| # | |
| # * "LS" prefix: built by Samsung | |
| # | |
| # * "LP" prefix: built by LG | |
| # | |
| # The screens manufactured by LG have had many problems with ghosting and image retention. | |
| ioreg -lw0 | grep \"EDID\" | sed "/[^<]*</s///" | xxd -p -r | strings -6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment