123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
- <!--
- Define aliasing and other fontconfig settings for Cantarell.
- -->
- <fontconfig>
- <!-- Generic name assignment -->
- <match target="pattern">
- <test qual="any" name="family">
- <string>Cantarell</string>
- </test>
- <edit name="family" mode="assign" binding="weak">
- <string>Cantarell</string>
- </edit>
- </match>
- </fontconfig>
|