37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||
|
<fontconfig>
|
||
|
<alias binding="same">
|
||
|
<family>Helvetica</family>
|
||
|
<accept>
|
||
|
<family>Arial</family>
|
||
|
</accept>
|
||
|
</alias>
|
||
|
<alias binding="same">
|
||
|
<family>Times</family>
|
||
|
<accept>
|
||
|
<family>Times New Roman</family>
|
||
|
</accept>
|
||
|
</alias>
|
||
|
<alias binding="same">
|
||
|
<family>Courier</family>
|
||
|
<accept>
|
||
|
<family>Courier New</family>
|
||
|
</accept>
|
||
|
</alias>
|
||
|
<!-- Prevent Gnome from using embedded bitmaps in fonts like Calibri -->
|
||
|
<match target="font">
|
||
|
<edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit>
|
||
|
</match>
|
||
|
|
||
|
<!-- Reject bitmap fonts in favour of Truetype, Postscript, etc. -->
|
||
|
<selectfont><rejectfont><pattern>
|
||
|
<patelt name="scalable"><bool>false</bool></patelt>
|
||
|
</pattern></rejectfont></selectfont>
|
||
|
|
||
|
<!-- Substitute truetype fonts for bitmap ones -->
|
||
|
<match target="font">
|
||
|
<edit name="prefer_outline"><bool>true</bool></edit>
|
||
|
</match>
|
||
|
</fontconfig>
|