Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version='1.0'?>
- <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
- <fontconfig>
- <match target="font">
- <edit mode="assign" name="rgba">
- <const>rgb</const>
- </edit>
- </match>
- <match target="font">
- <edit mode="assign" name="hinting">
- <bool>true</bool>
- </edit>
- </match>
- <match target="font">
- <edit mode="assign" name="hintstyle">
- <const>hintfull</const>
- </edit>
- </match>
- <match target="font">
- <edit mode="assign" name="antialias">
- <bool>true</bool>
- </edit>
- </match>
- <!-- Disable autohint for bold fonts so they are not overly bold -->
- <match target="font" >
- <test compare="more" name="weight" >
- <const>medium</const>
- </test>
- <edit mode="assign" name="autohint" >
- <bool>false</bool>
- </edit>
- </match>
- <!-- see http://bb.cactii.net/archives/000170.php -->
- <match target="pattern" >
- <test name="family" qual="any" >
- <string>Helvetica</string>
- </test>
- <edit mode="assign" name="family" >
- <string>Nimbus Sans</string>
- </edit>
- </match>
- <!-- my own -->
- <match target="pattern" >
- <test name="family" qual="any" >
- <string>Courier</string>
- </test>
- <edit mode="assign" name="family" >
- <string>Liberation Mono</string>
- </edit>
- </match>
- <match target="pattern" >
- <test name="family" qual="any" >
- <string>Courier New</string>
- </test>
- <edit mode="assign" name="family" >
- <string>Liberation Mono</string>
- </edit>
- </match>
- </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment