-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfonts.conf
49 lines (41 loc) · 1.1 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
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Reject all bitmap fonts -->
<selectfont>
<rejectfont>
<pattern>
<patelt name="scalable"><bool>false</bool></patelt>
</pattern>
</rejectfont>
</selectfont>
<match target="font">
<!-- Disable embedded bitmap for modern CPU and LCD -->
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
<!-- Disable hinting for complicated CJK glyph -->
<edit name="hintstyle" mode="assign">
<const>hintnone</const>
</edit>
<!-- Use standard rendering settings for LCD -->
<edit mode="assign" name="lcdfilter">
<const>lcddefault</const>
</edit>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
</match>
<!-- Prepend VLPGothic as ja sans-self font for adobe-flash-plugin -->
<match target="pattern">
<test name="lang" qual="any" compare="contains">
<string>ja</string>
</test>
<test name="family" qual="any">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>VLPGothic</string>
</edit>
</match>
</fontconfig>