c2a8ce7eeb
remove all the no-dejavu-variant-in-core workarounds
93 lines
2.3 KiB
XML
93 lines
2.3 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
<!-- /etc/fonts/conf.d/20-dejavu-experimental.conf
|
|
|
|
Define aliasing and other fontconfig stuff for DejaVu experimental
|
|
families
|
|
|
|
© 2006 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
|
This file is distributed under the terms of the GNU General
|
|
Public License (GPL) version 2. Copies of the GPL can be obtained from:
|
|
http://www.gnu.org/licenses/gpl.html
|
|
|
|
$Id$
|
|
-->
|
|
<fontconfig>
|
|
<!-- Declare generics -->
|
|
<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>
|
|
<!-- Declare substitutes -->
|
|
<alias>
|
|
<family>DejaVu LGC Sans Condensed</family>
|
|
<accept>
|
|
<family>DejaVu LGC Sans Condensed</family>
|
|
<family>DejaVu Sans Condensed</family>
|
|
</accept>
|
|
</alias>
|
|
<alias>
|
|
<family>Toga Sans</family>
|
|
<accept>
|
|
<family>Toga Sans</family>
|
|
<family>DejaVu Sans Condensed</family>
|
|
</accept>
|
|
</alias>
|
|
<alias>
|
|
<family>DejaVu LGC Serif Condensed</family>
|
|
<accept>
|
|
<family>DejaVu LGC Serif Condensed</family>
|
|
<family>DejaVu Serif Condensed</family>
|
|
</accept>
|
|
</alias>
|
|
<alias>
|
|
<family>Toga Serif</family>
|
|
<accept>
|
|
<family>Toga Serif</family>
|
|
<family>DejaVu Serif Condensed</family>
|
|
</accept>
|
|
</alias>
|
|
<!-- Use the same trick as Bitstream Vera -->
|
|
<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>
|
|
<match target="font">
|
|
<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>
|