blob: 8e5141e8cb51852231ba820a4cf8716470764f95 (
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
|
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<dir>~/.local/share/fonts</dir>
<match>
<test name="family" compare="contains">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Aporetic Sans</string>
</edit>
</match>
<match>
<test name="family" compare="contains">
<string>serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Aporetic Serif</string>
</edit>
</match>
<match>
<test name="family" compare="contains">
<string>monospace</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Aporetic Serif Mono</string>
</edit>
</match>
<match>
<test name="family" compare="contains">
<string>emoji</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Noto Emoji</string>
</edit>
</match>
</fontconfig>
|