Skip to content

Instantly share code, notes, and snippets.

@jpleau
Created July 6, 2014 00:23
Show Gist options
  • Save jpleau/2699572e9446d1f223ad to your computer and use it in GitHub Desktop.
Save jpleau/2699572e9446d1f223ad to your computer and use it in GitHub Desktop.
oxez ~ cat .config/fontconfig/conf.d/99-fonts.conf
<?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>
</fontconfig>
oxez ~ cat .Xresources | grep Xft
Xft.autohint: 0
Xft.antialias: 1
Xft.hinting: true
Xft.hintstyle: hintslight
Xft*dpi: 96
Xft.rgba: rgb
Xft.lcdfilter: lcddefault!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment