Skip to content

Instantly share code, notes, and snippets.

@scheckley
Created May 7, 2022 08:31
Show Gist options
  • Save scheckley/eb01bb636b23de6c5b984091785f1066 to your computer and use it in GitHub Desktop.
Save scheckley/eb01bb636b23de6c5b984091785f1066 to your computer and use it in GitHub Desktop.
font config
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="font">
<edit mode="assign" name="rgba">
<const>rgb</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hintstyle">
<const>hintslight</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="antialias">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit mode="assign" name="lcdfilter">
<const>lcddefault</const>
</edit>
</match>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment