-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfonts.conf
48 lines (42 loc) · 1.37 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
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- ~/.config/fontconfig/fonts.conf -->
<match target="pattern" >
<test name="family" >
<string>Monospace</string>
</test>
<edit mode="prepend" binding="strong" name="family" >
<string>Hack</string>
</edit>
<edit mode="append" binding="strong" name="family" >
<string>D2Coding</string>
</edit>
</match>
<match target="pattern" >
<test name="family" >
<string>sans-serif</string>
</test>
<edit mode="prepend" binding="strong" name="family" >
<string>Nimbus Sans L</string>
<!--
<string>Liberation Sans</string> -->
</edit>
<edit mode="append" binding="strong" name="family" >
<string>D2Coding</string>
</edit>
</match>
<match target="pattern" >
<test name="family" >
<string>serif</string>
</test>
<edit mode="prepend" binding="strong" name="family" >
<string>Nimbus Roman No9 L</string>
<!-- <string>Liberation Serif</string> -->
</edit>
<edit mode="append" binding="strong" name="family" >
<string>NanumMyeongjo</string>
<string>나눔명조</string>
</edit>
</match>
</fontconfig>