adamvk macrumors 65816 Original poster Oct 29, 2008 1,308 0 Phoenix, AZ Dec 2, 2012 #1 How do I tell if I have a Samsung or LG screen in my 15" Retina MBP? I've tried a few of the scripts, but none of them are working. Is this because of a recent OSX update or something? Thanks!
How do I tell if I have a Samsung or LG screen in my 15" Retina MBP? I've tried a few of the scripts, but none of them are working. Is this because of a recent OSX update or something? Thanks!
simsaladimbamba Guest Nov 28, 2010 22,670 31 located Dec 2, 2012 #2 Maybe this* can help finding the model, if the Terminal command** does not work. * ** Terminal command: Code: ioreg -lw0 | grep IODisplayEDID | sed "/[^<]*</s///" | xxd -p -r | strings -6
Maybe this* can help finding the model, if the Terminal command** does not work. * ** Terminal command: Code: ioreg -lw0 | grep IODisplayEDID | sed "/[^<]*</s///" | xxd -p -r | strings -6
angrydog macrumors member Dec 12, 2009 78 0 Dec 2, 2012 #3 Go to finder, Type and Open "Terminal" Application. Copy and Paste this onto Terminal (NOTE: This is a different command than what simsaladimbamba stated) Code: ioreg -lw0 | grep \"EDID\" | sed "/[^<]*</s///" | xxd -p -r | strings -6 If your display code begins with "LP," it's an LG display. If your display code begins with LSN, you can celebrate as it's a SAMSUNG dislay.
Go to finder, Type and Open "Terminal" Application. Copy and Paste this onto Terminal (NOTE: This is a different command than what simsaladimbamba stated) Code: ioreg -lw0 | grep \"EDID\" | sed "/[^<]*</s///" | xxd -p -r | strings -6 If your display code begins with "LP," it's an LG display. If your display code begins with LSN, you can celebrate as it's a SAMSUNG dislay.
adamvk macrumors 65816 Original poster Oct 29, 2008 1,308 0 Phoenix, AZ Dec 2, 2012 #4 Thanks guys! Got it working. And I have a Samsung display. Yay!