2006-07-12 19:24:03 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
2006-09-15 18:27:37 +00:00
|
|
|
<!-- /etc/fonts/conf.d/60-dejavu-experimental.conf
|
2006-07-12 19:24:03 +00:00
|
|
|
|
|
|
|
Define aliasing and other fontconfig stuff for DejaVu experimental
|
|
|
|
families
|
|
|
|
|
|
|
|
© 2006 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
-->
|
|
|
|
<fontconfig>
|
2006-07-30 20:22:26 +00:00
|
|
|
<!-- Declare substitutes -->
|
2006-08-30 21:42:31 +00:00
|
|
|
<match>
|
|
|
|
<test name="family">
|
|
|
|
<string>DejaVu LGC Sans Condensed</string>
|
|
|
|
</test>
|
|
|
|
<edit name="family" mode="append" binding="same">
|
|
|
|
<string>DejaVu Sans Condensed</string>
|
|
|
|
</edit>
|
|
|
|
</match>
|
|
|
|
<match>
|
|
|
|
<test name="family">
|
|
|
|
<string>Toga Sans</string>
|
|
|
|
</test>
|
|
|
|
<edit name="family" mode="append" binding="same">
|
|
|
|
<string>DejaVu Sans Condensed</string>
|
|
|
|
</edit>
|
|
|
|
</match>
|
|
|
|
<match>
|
|
|
|
<test name="family">
|
|
|
|
<string>DejaVu LGC Serif Condensed</string>
|
|
|
|
</test>
|
|
|
|
<edit name="family" mode="append" binding="same">
|
|
|
|
<string>DejaVu Serif Condensed</string>
|
|
|
|
</edit>
|
|
|
|
</match>
|
|
|
|
<match>
|
|
|
|
<test name="family">
|
|
|
|
<string>Toga Serif</string>
|
|
|
|
</test>
|
|
|
|
<edit name="family" mode="append" binding="same">
|
|
|
|
<string>DejaVu Serif Condensed</string>
|
|
|
|
</edit>
|
|
|
|
</match>
|
2006-09-15 18:27:37 +00:00
|
|
|
<!-- Assign generic name -->
|
|
|
|
<alias>
|
|
|
|
<family>DejaVu Sans Condensed</family>
|
|
|
|
<default>
|
|
|
|
<family>sans-serif</family>
|
|
|
|
</default>
|
|
|
|
</alias>
|
|
|
|
<alias>
|
|
|
|
<family>DejaVu Serif Condensed</family>
|
|
|
|
<default>
|
|
|
|
<family>serif</family>
|
|
|
|
</default>
|
|
|
|
</alias>
|
2006-08-30 21:42:31 +00:00
|
|
|
<!-- Turn off hinting at small sizes -->
|
2006-07-12 19:24:03 +00:00
|
|
|
<match target="font">
|
|
|
|
<test name="family">
|
|
|
|
<string>DejaVu Sans Condensed</string>
|
|
|
|
</test>
|
|
|
|
<test name="pixelsize" compare="less">
|
|
|
|
<double>7.5</double>
|
|
|
|
</test>
|
|
|
|
<edit name="hinting">
|
|
|
|
<bool>false</bool>
|
|
|
|
</edit>
|
|
|
|
</match>
|
2006-08-30 21:42:31 +00:00
|
|
|
<match target="font">
|
2006-07-12 19:24:03 +00:00
|
|
|
<test name="family">
|
|
|
|
<string>DejaVu Serif Condensed</string>
|
|
|
|
</test>
|
|
|
|
<test name="pixelsize" compare="less">
|
|
|
|
<double>7.5</double>
|
|
|
|
</test>
|
|
|
|
<edit name="hinting">
|
|
|
|
<bool>false</bool>
|
|
|
|
</edit>
|
|
|
|
</match>
|
|
|
|
<match target="font">
|
|
|
|
<test name="family">
|
|
|
|
<string>DejaVu Sans Mono Condensed</string>
|
|
|
|
</test>
|
|
|
|
<test name="pixelsize" compare="less">
|
|
|
|
<double>7.5</double>
|
|
|
|
</test>
|
|
|
|
<edit name="hinting">
|
|
|
|
<bool>false</bool>
|
|
|
|
</edit>
|
|
|
|
</match>
|
|
|
|
</fontconfig>
|