Advertisement
Guest User

Untitled

a guest
May 30th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 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. <!-- Accept bitmap fonts -->
  37. <selectfont>
  38. <acceptfont>
  39. <pattern>
  40. <patelt name="scalable"><bool>false</bool></patelt>
  41. </pattern>
  42. </acceptfont>
  43. </selectfont>
  44.  
  45. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement