Home > Common Problem > body text

How to change or remove font smoothing on MacOS Monterey and Big Sur

WBOY
Release: 2023-05-10 21:34:04
forward
1826 people have browsed it

How to disable font smoothing on MacOS Monterey and Big Sur

Since the feature is still available at the system level, it can be accessed using the Terminal application and the default write command. Just follow the steps below to get started.

  1. Click the Finder icon located in the Mac Dock.

    如何在 MacOS Monterey 和 Big Sur 上更改或删除字体平滑

  2. This will open a Finder window on your screen. Now, click on Applications in the left pane and go to the Utilities folder to continue.

    如何在 MacOS Monterey 和 Big Sur 上更改或删除字体平滑

  3. In the Utilities folder you will find the Terminal application. Click it to launch Terminal on your Mac. Alternatively, you can open Terminal using Spotlight search by pressing Command+Spacebar.

    如何在 MacOS Monterey 和 Big Sur 上更改或删除字体平滑

  4. Now, enter the following command and press Return or Enter:
    defaults -currentHost write -g AppleFontSmoothing -int 0

    如何在 MacOS Monterey 和 Big Sur 上更改或删除字体平滑

  5. Exit Terminal and click the Apple logo in the upper left corner of the screen. Select Restart from the drop-down menu and restart your Mac.

    如何在 MacOS Monterey 和 Big Sur 上更改或删除字体平滑

That’s all. Once your Mac boots up, you should notice that text is sharper and clearer. This may be a noticeable difference, especially on non-Retina displays, but for users on Retina Macs, they may not notice much of a difference, or the difference may be unwelcome.

How to Change Font Smoothing Level in MacOS Monterey and Big Sur

The command we mentioned above disables smoothing completely, but if the text is still blurry, you can adjust the font by slightly adjusting the command Smoothing level. See the integer value at the end of the command? If you want to use light smoothing, then change the value to "1", if you want to use medium smoothing, change the value to "2", and finally "3" for strong font smoothing. So in the terminal you would use a command like this:

light:
defaults -currentHost write -g AppleFontSmoothing -int 1

medium:
defaults -currentHost write -g AppleFontSmoothing -int 2

Strong:
defaults -currentHost write -g AppleFontSmoothing -int 3

Leave:
defaults -currentHost write -g AppleFontSmoothing -int 0

We’ve had numerous complaints about blurry text in different versions of MacOS, including Mojave and Yosemite. I ran into a similar issue when discussing changing font smoothing settings on Mac, but it's certainly worth a reminder with modern MacOS versions, especially now that individual system preference options are unavailable.

The above is the detailed content of How to change or remove font smoothing on MacOS Monterey and Big Sur. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
mac
source:yundongfang.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!