]> git.wh0rd.org - fontconfig.git/blame - fonts.conf.in
Change default set of fonts to include all of /usr/X11R6/lib/X11/fonts (or
[fontconfig.git] / fonts.conf.in
CommitLineData
24330d27
KP
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
302e07f1 3<!-- /etc/fonts/fonts.conf file to configure system font access -->
24330d27
KP
4<fontconfig>
5
a6531d8c 6<!--
302e07f1
KP
7 DO NOT EDIT THIS FILE.
8 IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
9 LOCAL CHANGES BELONG IN 'local.conf'.
10
a6531d8c
KP
11 The intent of this standard configuration file is to be adequate for
12 most environments. If you have a reasonably normal environment and
13 have found problems with this configuration, they are probably
ef82cce1
KP
14 things that others will also want fixed. Please submit any
15 problems to the fontconfig bugzilla system located at fontconfig.org
a6531d8c 16
302e07f1 17 Note that the normal 'make install' procedure for fontconfig is to
0ce819b6
KP
18 replace any existing fonts.conf file with the new version. Place
19 any local customizations in local.conf which this file references.
20
a6531d8c
KP
21 Keith Packard
22-->
23
20fa60c9 24<!-- Font directory list configured on @FC_FONTDATE@ -->
24330d27 25
20fa60c9
KP
26 <dir>@FC_DEFAULT_FONTS@</dir>
27 @FC_FONTPATH@
a6531d8c 28 <dir>~/.fonts</dir>
24330d27 29
24330d27
KP
30<!--
31 Accept deprecated 'mono' alias, replacing it with 'monospace'
32-->
33 <match target="pattern">
34 <test qual="any" name="family">
35 <string>mono</string>
36 </test>
37 <edit name="family" mode="assign">
38 <string>monospace</string>
39 </edit>
40 </match>
41
fa244f3d
KP
42<!--
43 Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
44-->
45 <match target="pattern">
46 <test qual="any" name="family">
47 <string>sans serif</string>
48 </test>
49 <edit name="family" mode="assign">
50 <string>sans-serif</string>
51 </edit>
52 </match>
53
24330d27
KP
54<!--
55 Accept deprecated 'sans' alias, replacing it with 'sans-serif'
56-->
57 <match target="pattern">
58 <test qual="any" name="family">
59 <string>sans</string>
60 </test>
61 <edit name="family" mode="assign">
62 <string>sans-serif</string>
63 </edit>
64 </match>
65
66<!--
67 Mark common families with their generics so we'll get
68 something reasonable
69-->
70
71<!--
72 Serif faces
73 -->
74 <alias>
b1e98ed9 75 <family>Bitstream Vera Serif</family>
24330d27 76 <family>Times</family>
24330d27 77 <family>Times New Roman</family>
fb9545b1
KP
78 <family>Nimbus Roman No9 L</family>
79 <family>Luxi Serif</family>
06a48f20
KP
80 <family>Kochi Mincho</family>
81 <family>AR PL SungtiL GB</family>
899e3526 82 <family>AR PL Mingti2L Big5</family>
e5871b5c
KP
83 <family>Baekmuk Batang</family>
84 <family>FreeSerif</family>
24330d27
KP
85 <default><family>serif</family></default>
86 </alias>
87<!--
88 Sans-serif faces
89 -->
90 <alias>
b1e98ed9 91 <family>Bitstream Vera Sans</family>
24330d27 92 <family>Helvetica</family>
24330d27 93 <family>Arial</family>
24330d27 94 <family>Verdana</family>
fb9545b1
KP
95 <family>Nimbus Sans L</family>
96 <family>Luxi Sans</family>
06a48f20
KP
97 <family>Kochi Gothic</family>
98 <family>AR PL KaitiM GB</family>
899e3526 99 <family>AR PL KaitiM Big5</family>
06a48f20 100 <family>Baekmuk Dotum</family>
899e3526 101 <family>SimSun</family>
e5871b5c 102 <family>FreeSans</family>
24330d27
KP
103 <default><family>sans-serif</family></default>
104 </alias>
105<!--
106 Monospace faces
107 -->
108 <alias>
b1e98ed9 109 <family>Bitstream Vera Sans Mono</family>
24330d27 110 <family>Courier</family>
24330d27 111 <family>Courier New</family>
24330d27 112 <family>Andale Mono</family>
fb9545b1 113 <family>Luxi Mono</family>
06a48f20 114 <family>Nimbus Mono L</family>
899e3526 115 <family>NSimSun</family>
e5871b5c 116 <family>FreeMono</family>
24330d27
KP
117 <default><family>monospace</family></default>
118 </alias>
119<!--
120 If the font still has no generic name, add sans-serif
121 -->
122 <match target="pattern">
123 <test qual="all" name="family" compare="not_eq">
124 <string>sans-serif</string>
125 </test>
126 <test qual="all" name="family" compare="not_eq">
127 <string>serif</string>
128 </test>
129 <test qual="all" name="family" compare="not_eq">
130 <string>monospace</string>
131 </test>
132 <edit name="family" mode="append_last">
133 <string>sans-serif</string>
134 </edit>
135 </match>
e5871b5c 136
cc168fa6
KP
137<!--
138 Some Asian fonts misadvertise themselves as monospaced when
139 in fact they are dual-spaced (half and full). This makes
140 FreeType very confused as it forces all widths to match.
141 Undo this magic by disabling the width forcing code -->
142 <match target="font">
143 <test name="family"><string>GulimChe</string></test>
144 <edit name="globaladvance"><bool>false</bool></edit>
145 </match>
e5871b5c 146
cc168fa6
KP
147 <match target="font">
148 <test name="family"><string>DotumChe</string></test>
149 <edit name="globaladvance"><bool>false</bool></edit>
150 </match>
151
df43986c
KP
152 <match target="font">
153 <test name="family"><string>BatangChe</string></test>
154 <edit name="globaladvance"><bool>false</bool></edit>
155 </match>
156
157 <match target="font">
158 <test name="family"><string>GungsuhChe</string></test>
159 <edit name="globaladvance"><bool>false</bool></edit>
160 </match>
161
b1e98ed9
KP
162<!--
163 The Bitstream Vera fonts have GASP entries suggesting that hinting be
164 disabled below 8 ppem, but FreeType ignores those, preferring to use
165 the data found in the instructed hints. The initial Vera release
166 didn't include the right instructions in the 'prep' table. Fix this
167 by disabling hinting manually at smaller sizes (< 8ppem)
168 -->
e5871b5c 169
b1e98ed9
KP
170 <match target="font">
171 <test name="family">
172 <string>Bitstream Vera Sans</string>
173 </test>
174 <test name="pixelsize" compare="less">
175 <double>7.5</double>
176 </test>
177 <edit name="hinting">
178 <bool>false</bool>
179 </edit>
180 </match>
e5871b5c 181
b1e98ed9
KP
182 <match target="font">
183 <test name="family">
184 <string>Bitstream Vera Serif</string>
185 </test>
186 <test name="pixelsize" compare="less">
187 <double>7.5</double>
188 </test>
189 <edit name="hinting">
190 <bool>false</bool>
191 </edit>
192 </match>
e5871b5c 193
b1e98ed9
KP
194 <match target="font">
195 <test name="family">
196 <string>Bitstream Vera Sans Mono</string>
197 </test>
198 <test name="pixelsize" compare="less">
199 <double>7.5</double>
200 </test>
201 <edit name="hinting">
202 <bool>false</bool>
203 </edit>
204 </match>
e5871b5c 205
24330d27
KP
206<!--
207 Load per-user customization file
208-->
209 <include ignore_missing="yes">~/.fonts.conf</include>
210
938bc633
KP
211<!--
212 Load local system customization file
213-->
2d9c79c0 214 <include ignore_missing="yes">conf.d</include>
938bc633
KP
215 <include ignore_missing="yes">local.conf</include>
216
24330d27 217<!--
6d3a90a4 218 Alias well known Type1 font names to metric equivalent TrueType fonts
24330d27
KP
219-->
220 <alias>
221 <family>Times</family>
fb9545b1 222 <accept><family>Times New Roman</family></accept>
24330d27
KP
223 </alias>
224 <alias>
225 <family>Helvetica</family>
6d3a90a4 226 <accept><family>Arial</family></accept>
24330d27
KP
227 </alias>
228 <alias>
229 <family>Courier</family>
fb9545b1 230 <accept><family>Courier New</family></accept>
24330d27
KP
231 </alias>
232
233<!--
234 Provide required aliases for standard names
235-->
236 <alias>
237 <family>serif</family>
238 <prefer>
b1e98ed9 239 <family>Bitstream Vera Serif</family>
24330d27
KP
240 <family>Times New Roman</family>
241 <family>Nimbus Roman No9 L</family>
242 <family>Luxi Serif</family>
243 <family>Times</family>
6d3a90a4 244 <family>Frank Ruehl</family>
06a48f20
KP
245 <family>Kochi Mincho</family>
246 <family>AR PL SungtiL GB</family>
899e3526 247 <family>AR PL Mingti2L Big5</family>
e5871b5c
KP
248 <family>Baekmuk Batang</family>
249 <family>FreeSerif</family>
24330d27
KP
250 </prefer>
251 </alias>
252 <alias>
253 <family>sans-serif</family>
254 <prefer>
b1e98ed9 255 <family>Bitstream Vera Sans</family>
24330d27
KP
256 <family>Verdana</family>
257 <family>Nimbus Sans L</family>
258 <family>Luxi Sans</family>
259 <family>Arial</family>
260 <family>Helvetica</family>
6d3a90a4 261 <family>Nachlieli</family>
06a48f20
KP
262 <family>Kochi Gothic</family>
263 <family>AR PL KaitiM GB</family>
899e3526 264 <family>AR PL KaitiM Big5</family>
06a48f20 265 <family>Baekmuk Dotum</family>
899e3526 266 <family>SimSun</family>
e5871b5c 267 <family>FreeSans</family>
24330d27
KP
268 </prefer>
269 </alias>
270 <alias>
271 <family>monospace</family>
272 <prefer>
b1e98ed9 273 <family>Bitstream Vera Sans Mono</family>
24330d27
KP
274 <family>Andale Mono</family>
275 <family>Courier New</family>
24330d27 276 <family>Luxi Mono</family>
06a48f20 277 <family>Nimbus Mono L</family>
6d3a90a4 278 <family>Miriam Mono</family>
06a48f20
KP
279 <family>Kochi Gothic</family>
280 <family>AR PL KaitiM GB</family>
281 <family>Baekmuk Dotum</family>
e5871b5c 282 <family>FreeMono</family>
24330d27
KP
283 </prefer>
284 </alias>
285
c689ec22
KP
286<!--
287 Artificial oblique for fonts without an italic or oblique version
288 -->
289
290 <match target="font">
291 <!-- check to see if the font is roman -->
938bc633 292 <test name="slant">
c689ec22
KP
293 <const>roman</const>
294 </test>
295 <!-- check to see if the pattern requested non-roman -->
938bc633 296 <test target="pattern" name="slant" compare="not_eq">
c689ec22
KP
297 <const>roman</const>
298 </test>
299 <!-- multiply the matrix to slant the font -->
300 <edit name="matrix" mode="assign">
301 <times>
302 <name>matrix</name>
ddde1797 303 <matrix><double>1</double><double>0.2</double>
c689ec22
KP
304 <double>0</double><double>1</double>
305 </matrix>
306 </times>
307 </edit>
308 <!-- pretend the font is oblique now -->
309 <edit name="slant" mode="assign">
310 <const>oblique</const>
311 </edit>
312 </match>
313
fb9545b1 314 <config>
24330d27
KP
315<!--
316 These are the default Unicode chars that are expected to be blank
317 in fonts. All other blank chars are assumed to be broken and
318 won't appear in the resulting charsets
319 -->
fb9545b1 320 <blank>
9cc93576
KP
321 <int>0x0020</int> <!-- SPACE -->
322 <int>0x00a0</int> <!-- NO-BREAK SPACE -->
323 <int>0x00ad</int> <!-- SOFT HYPHEN -->
324 <int>0x115f</int> <!-- HANGUL CHOSEONG FILLER -->
325 <int>0x1160</int> <!-- HANGUL JUNGSEONG FILLER -->
326 <int>0x1680</int> <!-- OGHAM SPACE MARK -->
327 <int>0x2000</int> <!-- EN QUAD -->
328 <int>0x2001</int> <!-- EM QUAD -->
329 <int>0x2002</int> <!-- EN SPACE -->
330 <int>0x2003</int> <!-- EM SPACE -->
331 <int>0x2004</int> <!-- THREE-PER-EM SPACE -->
332 <int>0x2005</int> <!-- FOUR-PER-EM SPACE -->
333 <int>0x2006</int> <!-- SIX-PER-EM SPACE -->
334 <int>0x2007</int> <!-- FIGURE SPACE -->
335 <int>0x2008</int> <!-- PUNCTUATION SPACE -->
336 <int>0x2009</int> <!-- THIN SPACE -->
337 <int>0x200a</int> <!-- HAIR SPACE -->
338 <int>0x200b</int> <!-- ZERO WIDTH SPACE -->
339 <int>0x200c</int> <!-- ZERO WIDTH NON-JOINER -->
340 <int>0x200d</int> <!-- ZERO WIDTH JOINER -->
341 <int>0x200e</int> <!-- LEFT-TO-RIGHT MARK -->
342 <int>0x200f</int> <!-- RIGHT-TO-LEFT MARK -->
343 <int>0x2028</int> <!-- LINE SEPARATOR -->
344 <int>0x2029</int> <!-- PARAGRAPH SEPARATOR -->
345 <int>0x202a</int> <!-- LEFT-TO-RIGHT EMBEDDING -->
346 <int>0x202b</int> <!-- RIGHT-TO-LEFT EMBEDDING -->
347 <int>0x202c</int> <!-- POP DIRECTIONAL FORMATTING -->
348 <int>0x202d</int> <!-- LEFT-TO-RIGHT OVERRIDE -->
349 <int>0x202e</int> <!-- RIGHT-TO-LEFT OVERRIDE -->
350 <int>0x202f</int> <!-- NARROW NO-BREAK SPACE -->
351 <int>0x205f</int> <!-- MEDIUM MATHEMATICAL SPACE -->
352 <int>0x2060</int> <!-- WORD JOINER -->
353 <int>0x2061</int> <!-- FUNCTION APPLICATION -->
354 <int>0x2062</int> <!-- INVISIBLE TIMES -->
355 <int>0x2063</int> <!-- INVISIBLE SEPARATOR -->
ce50587c
KP
356 <int>0x206A</int> <!-- INHIBIT SYMMETRIC SWAPPING -->
357 <int>0x206B</int> <!-- ACTIVATE SYMMETRIC SWAPPING -->
358 <int>0x206C</int> <!-- INHIBIT ARABIC FORM SHAPING -->
359 <int>0x206D</int> <!-- ACTIVATE ARABIC FORM SHAPING -->
360 <int>0x206E</int> <!-- NATIONAL DIGIT SHAPES -->
361 <int>0x206F</int> <!-- NOMINAL DIGIT SHAPES -->
9cc93576 362 <int>0x3000</int> <!-- IDEOGRAPHIC SPACE -->
f9ad97b0 363 <int>0x3164</int> <!-- HANGUL FILLER -->
9cc93576 364 <int>0xfeff</int> <!-- ZERO WIDTH NO-BREAK SPACE -->
10bac9b5
KP
365 <int>0xffa0</int> <!-- HALFWIDTH HANGUL FILLER -->
366 <int>0xfff9</int> <!-- INTERLINEAR ANNOTATION ANCHOR -->
367 <int>0xfffa</int> <!-- INTERLINEAR ANNOTATION SEPARATOR -->
3d72cadd 368 <int>0xfffb</int> <!-- INTERLINEAR ANNOTATION TERMINATOR -->
fb9545b1
KP
369 </blank>
370<!--
371 Rescan configuration every 30 seconds when FcFontSetList is called
372 -->
373 <rescan>
374 <int>30</int>
375 </rescan>
376 </config>
24330d27
KP
377
378</fontconfig>