Skip to content

Instantly share code, notes, and snippets.

@daniepetrov
Last active January 15, 2021 12:14
Show Gist options
  • Save daniepetrov/6a88c5f1d5edd697b7f47f787a66afe1 to your computer and use it in GitHub Desktop.
Save daniepetrov/6a88c5f1d5edd697b7f47f787a66afe1 to your computer and use it in GitHub Desktop.
How to Fix Blurry Fonts in MacOS Mojave / Catalina for Non-Retina Displays
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO
defaults -currentHost write -globalDomain AppleFontSmoothing -int 1

Light font smoothing defaults command (my selection):

defaults -currentHost write -globalDomain AppleFontSmoothing -int 1

Medium font smoothing defaults command:

defaults -currentHost write -globalDomain AppleFontSmoothing -int 2

Strong font smoothing defaults command:

defaults -currentHost write -globalDomain AppleFontSmoothing -int 3
@brukh
Copy link

brukh commented Apr 15, 2020

thanks Daniil, this was helpful!

@GabrielAnca
Copy link

GabrielAnca commented Jun 13, 2020

Thank you for this! However, I think this works only on high DPI displays. In my 1080p display it only makes it look worse 😢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment