Last Updated: February 25, 2016
·
537
· Mortezaipo

How to disable hinting fonts style in Archbang

Maybe it's possible for you when you install Archbang , your fonts config never works for you.

So for fixing this problem try it:

$ vim .config/fontconfig/fonts.conf

Add this content:

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
    <match target="font">
        <edit name="hinting" mode="assign">
            <bool>false</bool>
        </edit>
    </match>
</fontconfig>

It will disable your hinting style.

Note: I tried it on my system but never worked:

$ vim ~/.fonts.conf

For more information about font config:
https://wiki.archlinux.org/index.php/Font_Configuration