Skip to main content

Running 2560x1080 on LG 29UM57-P on an old MacBook Pro OSX El Capitan


Yes. A mid-2011 MacBook Pro running OSX El Capitan can drive a 2560x1080 monitor via HDMI.

I was not able to get 60 Hz working. I am settling with 53 Hz. I tried many settings before finding something that works. The refresh rate seems fine to me. Maybe the text could be clearer but for a $200 monitor running this resolution, I'll take it. Apple MacBook 2015 retina resolution is 2560 x 1800. Consider buying a better monitor that may literally give you fewer headaches.
  1. Install SwitchResX
  2. Follow the instructions for disabling SIP
  3. After rebooting, run SwitchResX via System Preferences
  4. Select your LG monitor
  5. Click Custom Resolutions
  6. Click the + icon 
  7. Enter these settings (source)
  8. Exit SwitchResX and save
  9. Reboot
  10. Run SwitchResX via System Preferences
  11. Select your LG monitor
  12. Click Current Resolutions
  13. Select the 2560x1080, 53 Hz setting
  14. Enable SIP
If you discover better settings, please leave a comment.

Comments

Unknown said…
This comment has been removed by a blog administrator.
Anonymous said…
This comment has been removed by a blog administrator.
Emma Watson said…
This comment has been removed by a blog administrator.
Unknown said…
Great! Thank you.
james brown said…
This comment has been removed by a blog administrator.
Anonymous said…
THANKS!!!!!!

Popular posts from this blog

Collecting and graphing metrics via Apache Camel, Statsd, and Graphite

If you're curious about Apache Camel's metrics reporting via Dropwizard , this guide will help you get Graphite running in a Docker container. Then you will run an instrumented Camel application and view its metrics via Graphite's browser UI. (1) Install Docker There are many ways to do this depending on your platform. Google it. (2) Install and run the Docker container for Statsd and Graphite Refer to  https://github.com/hopsoft/docker-graphite-statsd The instructions infer that you can run the container without specifying port mappings. This is plain wrong. So use the following command to start the container: docker run -d --name graphite --restart=always -p 80:80 -p 8125:8125/udp hopsoft/graphite-statsd It is not necessary to enable Graphite's UDP listener. Statsd receives metrics via UDP and forwards them to Graphite over TCP. (3) On Windows and OSX, determine the IP address of the graphite Docker container On Linux, you can use localhost. On Win...