forked from zma/config_files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.fonts.conf.dejavu
73 lines (72 loc) · 1.46 KB
/
.fonts.conf.dejavu
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
72
73
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<!--
Begin user preferred fonts config:
Created by: Zhiqiang Ma (Eric) eric [at] pkill.info
About usage of this config file: http://pkill.info/b/298/
-->
<!--
Purpose:
1. use the dejavu fonts for non-CJK characters
2. use uming fonts for Chinese characters
Preferred fonts:
dejavu-fonts
cjkunifonts-uming
-->
<!--
Serif faces
-->
<alias>
<family>serif</family>
<prefer>
<family>DejaVu Serif</family>
<!-- <family>AR PL UKai CN</family> -->
<family>AR PL UMing CN</family>
</prefer>
</alias>
<!--
Sans-serif faces
-->
<alias>
<family>sans-serif</family>
<prefer>
<family>DejaVu Sans</family>
<family>AR PL UMing CN</family>
</prefer>
</alias>
<!--
Monospace faces
-->
<alias>
<family>monospace</family>
<prefer>
<family>DejaVu Sans Mono</family>
<family>Bitstream Vera Sans Mono</family>
<family>AR PL UMing CN</family>
</prefer>
</alias>
<!--
End user preferred fonts config.
-->
<match target="font" >
<edit mode="assign" name="rgba" >
<const>rgb</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hinting" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hintstyle" >
<const>hintmedium</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
</fontconfig>