blob: d883d970e3a8007793f5e756a8c407c7b11c8ead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
<match target="font">
<test name="family" qual="any">
<string>Hack</string>
</test>
<test name="family" qual="any">
<string>Comic Code</string>
</test>
<test name="family" compare="contains">
<string>IosevkaInput</string>
</test>
<edit name="hintstyle" mode="assign">
<const>hintfull</const>
</edit>
</match>
</fontconfig>
|