summaryrefslogtreecommitdiff
path: root/.fonts.conf
blob: cd0570bf6657abfdb90df1461bc49c1832747145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0"?>
<!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">
		<test name="pixelsize" compare="less">
			<double>8.0</double>
		</test>
		<edit name="rgba" mode="assign">
			<const>none</const>
		</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>
        <edit name="autohint" mode="assign"><bool>false</bool></edit>
        <edit name="rgba" mode="assign">
            <const>none</const>
        </edit>
    </match>

</fontconfig>