Skip to content

Instantly share code, notes, and snippets.

@Jbelly19
Last active August 19, 2020 14:47
Show Gist options
  • Select an option

  • Save Jbelly19/560de19ccdcd6b675777eada7c67462c to your computer and use it in GitHub Desktop.

Select an option

Save Jbelly19/560de19ccdcd6b675777eada7c67462c to your computer and use it in GitHub Desktop.
How to fix blurry text on Mac when using non retina external displays

Tutorial on fixing mac blurry text for non retina external displays

Turn on font smoothing:

defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO

Turn off font smoothing:

# revert custom font smoothing settings
defaults -currentHost delete -globalDomain AppleFontSmoothing

# revert back to default font smoothing 
defaults write -g CGFontRenderingFontSmoothingDisabled -bool YES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment