-
Notifications
You must be signed in to change notification settings - Fork 0
/
.fonts.conf
155 lines (121 loc) · 4.26 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- ~/.fonts.conf: per-user font customization -->
<fontconfig>
<!--
=== Fontset substitutions or font supplements ===============================
Specify fonts to substitute virtual fontset "Serif", "Sans" or "Monospace".
Non-latin fonts are also used to supplement latin ones in those categories.
=============================================================================
-->
<alias>
<family>serif</family>
<!-- ===================================== -->
<!-- Set preferred fonts below for "Serif" -->
<!-- ===================================== -->
<prefer>
<family>Nimbus Roman No9 L</family>
<family>IPAPMincho</family>
</prefer>
</alias>
<alias>
<family>sans-serif</family>
<!-- ==================================== -->
<!-- Set preferred fonts below for "Sans" -->
<!-- ==================================== -->
<prefer>
<family>Nimbus Sans L</family>
<family>IPAPGothic</family>
<family>VL PGothic</family>
</prefer>
</alias>
<alias>
<family>monospace</family>
<!-- =================================================== -->
<!-- Set preferred fonts below for "Monospace" -->
<!-- -->
<!-- NOTE: Setting latin font is recommended, because -->
<!-- neither FS Gothic nor IPAGothic covers whole latin -->
<!-- area by itself. Although there are some fonts (for -->
<!-- example, MS Gothic) which cover that area by single -->
<!-- font, Plamo does not have such ones. -->
<!-- =================================================== -->
<prefer>
<family>Bitstream Vera Sans Mono</family>
<family>FS Gothic</family>
</prefer>
</alias>
<!--
=== Another font supplements ================================================
Uncomment and copy (if necessary) below to make supplement a particular latin
font with other non-latin fonts.
=============================================================================
-->
<!--
<alias>
-->
<!-- ====================================== -->
<!-- Set base latin font to be supplemented -->
<!-- ====================================== -->
<!--
<family>URW Gothic L</family>
-->
<!-- ================================================== -->
<!-- Set preferred fonts to supplement latin font above -->
<!-- ================================================== -->
<!--
<accept><family>HGMaruGothicMPro</family></accept>
</alias>
-->
<!--
=== Disable antialias =======================================================
Disable antialias to make prefer using embedded bitmaps on cairo renderer.
Also set "embeddedbitmap" property for traditional xft renderer.
=============================================================================
-->
<match target="font">
<!-- ============================== -->
<!-- Set fonts to disable antialias -->
<!-- ============================== -->
<test qual="any" name="family" compare="eq">
<string>FS Mincho</string>
<string>FS Gothic</string>
<string>IPAMincho</string>
<string>IPAPMincho</string>
<string>IPAGothic</string>
<string>IPAPGothic</string>
<string>IPAUIGothic</string>
<string>VL Gothic</string>
<string>VL PGothic</string>
<string>MS Mincho</string>
<string>MS PMincho</string>
<string>MS Gothic</string>
<string>MS PGothic</string>
<string>MS UI Gothic</string>
</test>
<test target="pattern" name="weight" compare="less_eq">
<const>medium</const>
</test>
<test target="pattern" name="slant" compare="eq">
<const>roman</const>
</test>
<!-- ================================================= -->
<!-- Set minimum size (in pixels) to disable antialias -->
<!-- ================================================= -->
<test name="pixelsize" compare="more_eq">
<double>12</double>
</test>
<!-- ================================================= -->
<!-- Set maximum size (in pixels) to disable antialias -->
<!-- ================================================= -->
<test name="pixelsize" compare="less_eq">
<double>16</double>
</test>
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
<edit name="embeddedbitmap" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>