-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.fonts.conf
43 lines (38 loc) · 1.5 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
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Change most font requests to Helvetica bitmap -->
<match target="pattern">
<edit name="family" mode="prepend" binding="same">
<string>Helvetica</string>
</edit>
<edit name="prefer_outline" mode="assign"> <bool>false</bool></edit>
<!-- Uncomment this if you want a fixed pixel size.
Usually better to do it with the DPI setting in Xresources
because that allows for size variations. -->
<!-- <edit name="pixelsize" mode="prepend"> <double>20</double></edit> -->
</match>
<!-- However, if they specifically requested serif or
monospace, we can provide 20-pixel Times or Fixed -->
<match target="pattern">
<test name="family"> <const>serif</const> </test>
<edit name="family" mode="prepend" binding="same">
<string>Times</string>
</edit>
<!-- <edit name="pixelsize" mode="prepend"> <double>20</double></edit> -->
</match>
<match target="pattern">
<test name="family"> <const>monospace</const> </test>
<edit name="family" mode="prepend" binding="same">
<string>Fixed</string>
</edit>
<!-- <edit name="pixelsize" mode="prepend"> <double>20</double></edit> -->
</match>
<!-- Where to find history of this file:
on GitHub at https://github.com/ssb22/config
and on GitLab at https://gitlab.com/ssb22/config
and on BitBucket https://bitbucket.org/ssb22/config
and at https://gitlab.developers.cam.ac.uk/ssb22/config
and in China: https://gitee.com/ssb22/config
-->
</fontconfig>