blob: b3cad32bd08f8e372b89fd6484ec885b42aaca87 (
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
|
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
<!-- Sans -->
<match target="font">
<test name="family" compare="contains">
<string>Noto Sans CJK</string>
</test>
<edit name="hinting" mode="assign">
<bool>false</bool>
</edit>
</match>
<!-- Serif -->
<match target="font">
<test name="family" compare="contains">
<string>Noto Serif CJK</string>
</test>
<edit name="hinting" mode="assign">
<bool>false</bool>
</edit>
</match>
<!-- Monospace -->
<match target="font">
<test name="family" compare="contains">
<string>Noto Sans Mono CJK</string>
</test>
<edit name="hinting" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
|