Guest User

Untitled

a guest
Oct 22nd, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4.  
  5. <!-- settings go here -->
  6. <match target="font">
  7. <test name="weight" compare="more">
  8. <const>medium</const>
  9. </test>
  10. <edit name="autohint" mode="assign">
  11. <bool>trye</bool>
  12. </edit>
  13. </match>
  14.  
  15. <match target="font">
  16. <edit name="antialias" mode="assign">
  17. <bool>false</bool>
  18. </edit>
  19. </match>
  20.  
  21. <match target="font" >
  22. <test name="size" qual="any" compare="more">
  23. <double>12</double>
  24. </test>
  25. <edit name="antialias" mode="assign">
  26. <bool>true</bool>
  27. </edit>
  28. </match>
  29.  
  30. <match target="font" >
  31. <test name="pixelsize" qual="any" compare="more">
  32. <double>16</double>
  33. </test>
  34. <edit name="antialias" mode="assign">
  35. <bool>true</bool>
  36. </edit>
  37. </match>
  38.  
  39. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment