mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
|
<?xml version="1.0"?>
|
||
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||
|
<fontconfig>
|
||
|
<!-- Replace generic bitmap font names by generic font families.
|
||
|
These font-families will get replaced by other rules and
|
||
|
default to scaled ones. -->
|
||
|
<match target="pattern" name="family">
|
||
|
<test name="family" qual="any">
|
||
|
<string>Helvetica</string>
|
||
|
</test>
|
||
|
<edit mode="assign" name="family">
|
||
|
<string>Arial</string>
|
||
|
<string>Liberation Sans</string>
|
||
|
<string>sans-serif</string>
|
||
|
</edit>
|
||
|
</match>
|
||
|
<match target="pattern" name="family">
|
||
|
<test name="family" qual="any">
|
||
|
<string>Courier</string>
|
||
|
</test>
|
||
|
<edit mode="assign" name="family">
|
||
|
<string>Courier New</string>
|
||
|
<string>Liberation Mono</string>
|
||
|
<string>monospace</string>
|
||
|
</edit>
|
||
|
</match>
|
||
|
<match target="pattern" name="family">
|
||
|
<test name="family" qual="any">
|
||
|
<string>Times</string>
|
||
|
</test>
|
||
|
<edit mode="assign" name="family">
|
||
|
<string>Times New Roman</string>
|
||
|
<string>Liberation Serif</string>
|
||
|
<string>serif</string>
|
||
|
</edit>
|
||
|
</match>
|
||
|
</fontconfig>
|