Created
August 13, 2025 13:01
-
-
Save x7dl8p/5e5cd0742de41c3ef082c2045e84b0f3 to your computer and use it in GitHub Desktop.
how to get mac text rendering in linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit name="antialias"><bool>true</bool></edit> | |
| <edit name="hinting"><bool>false</bool></edit> | |
| <edit name="rgba"><const>rgb</const></edit> | |
| <edit name="lcdfilter"><const>lcddefault</const></edit> | |
| </match> | |
| </fontconfig> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you drop this file in
~/.config/fontconfig/fonts.confand run:it’ll apply system-wide for your user. (in Linux)