diff options
Diffstat (limited to '.fonts.conf')
-rw-r--r-- | .fonts.conf | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/.fonts.conf b/.fonts.conf index a4019de..531a1f3 100644 --- a/.fonts.conf +++ b/.fonts.conf @@ -2,33 +2,42 @@ <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> - <!-- Disable subpixels for small fonts --> - <match target="font"> - <test name="pixelsize" compare="less"> - <double>8.0</double> - </test> - <edit name="rgba" mode="assign"> - <const>none</const> - </edit> + <!-- Disable subpixels for small fonts --> + <match target="font"> + <test name="pixelsize" compare="less"> + <double>8.0</double> + </test> + <edit name="rgba" mode="assign"> + <const>none</const> + </edit> </match> - <match target="font"> + <edit name="hinting" mode="assign"> + <bool>true</bool> + </edit> <edit name="hintstyle" mode="assign"> <const>hintfull</const> </edit> - </match> - - <match target="font"> <edit mode="assign" name="lcdfilter"> <const>lcddefault</const> </edit> </match> - + <match target="font"> + <test name="weight" compare="more"> + <const>medium</const> + </test> + <edit name="autohint" mode="assign"> + <bool>false</bool> + </edit> + </match> <match target="font"> <test name="family"> <string>Inconsolata</string> </test> + <edit name="autohint" mode="assign"> + <bool>false</bool> + </edit> <edit name="hintstyle" mode="assign"> <const>hintslight</const> </edit> |