Advertisement
Guest User

.fonts.conf

a guest
Jun 25th, 2011
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.74 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4.  
  5.    <match target="font">
  6.     <edit name="antialias" mode="assign">
  7.       <bool>true</bool>
  8.     </edit>
  9.  
  10.     <edit name="hinting" mode="assign">
  11.       <bool>true</bool>
  12.     </edit>
  13.  
  14. <!--
  15. "The autohinter and subpixel rendering are not designed to work
  16. together and should not be used in combination."
  17. from: https://wiki.archlinux.org/index.php/Font_Configuration"
  18. -->
  19.     <edit name="autohint" mode="assign">
  20.       <bool>false</bool>
  21.     </edit>
  22.  
  23.     <edit name="hintstyle" mode="assign">
  24.       <const>hintslight</const>
  25.     </edit>
  26.  
  27.     <edit mode="assign" name="lcdfilter">
  28.       <const>lcddefault</const>
  29.     </edit>
  30.   </match>
  31.  
  32. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement