diff options
-rw-r--r-- | .fonts.conf | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/.fonts.conf b/.fonts.conf index cd0570b..b2b1d92 100644 --- a/.fonts.conf +++ b/.fonts.conf @@ -2,11 +2,6 @@ <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> - <!-- Disable Autohinting for bold fonts --> - <match target="font"> - <test name="weight" compare="more"><const>medium</const></test> - <edit name="autohint" mode="assign"><bool>false</bool></edit> - </match> <!-- Disable subpixels for small fonts --> <match target="font"> @@ -18,20 +13,14 @@ </edit> </match> - <!-- Disable all automatisms for the japanese thingy --> <match target="font"> - <test name="family"> - <string>IPAPGothic</string> - <string>IPAPMincho</string> - <string>IPAGothic</string> - <string>IPAMincho</string> - </test> - <edit name="hinting" mode="assign"> - <bool>false</bool> + <edit name="hintstyle" mode="assign"> + <const>hintfull</const> </edit> - <edit name="autohint" mode="assign"><bool>false</bool></edit> - <edit name="rgba" mode="assign"> - <const>none</const> + </match> + <match target="font"> + <edit mode="assign" name="lcdfilter"> + <const>lcddefault</const> </edit> </match> |