-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathfonts.conf
71 lines (71 loc) · 1.73 KB
/
fonts.conf
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="pattern">
<edit name="dpi" mode="assign">
<double>96</double>
</edit>
</match>
<match target="font">
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
</match>
<match>
<test compare="contains" name="lang">
<string>kr</string>
</test>
<edit mode="prepend" name="family">
<string>Noto Sans CJK KR</string>
</edit>
</match>
<match>
<test compare="contains" name="lang">
<string>ja</string>
</test>
<edit mode="prepend" name="family">
<string>Noto Sans CJK JP</string>
</edit>
</match>
<match target="font">
<test qual="all" name="rgba" compare="eq">
<const>unknown</const>
</test>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>serif</string>
</test>
<edit name="family" mode="prepend">
<string>JoyPixels</string>
</edit>
<edit name="family" mode="prepend">
<string>Noto Serif</string>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend">
<string>JoyPixels</string>
</edit>
<edit name="family" mode="prepend">
<string>Inter</string>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>monospace</string>
</test>
<edit name="family" mode="prepend" binding="same">
<string>FiraCode Nerd Font Mono</string>
</edit>
<edit name="family" mode="prepend">
<string>Font Awesome 5 Free Solid</string>
</edit>
</match>
</fontconfig>