Advertisement
Guest User

.fonts.conf

a guest
Jul 1st, 2011
2,666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.81 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.     <edit name="rgba" mode="assign">
  15.       <const>rgb</const>
  16.     </edit>
  17.  
  18. <!--
  19. "The autohinter and subpixel rendering are not designed to work
  20. together and should not be used in combination."
  21. from: https://wiki.archlinux.org/index.php/Font_Configuration"
  22. -->
  23.     <edit name="autohint" mode="assign">
  24.       <bool>false</bool>
  25.     </edit>
  26.  
  27.     <edit name="hintstyle" mode="assign">
  28.       <const>hintslight</const>
  29.     </edit>
  30.  
  31.     <edit mode="assign" name="lcdfilter">
  32.       <const>lcddefault</const>
  33.     </edit>
  34.   </match>
  35.  
  36. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement