Guest User

Untitled

a guest
Oct 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3.  
  4. <fontconfig>
  5. <!-- Most fonts can't be hinted properly
  6. but full hinting seems to cause less problems with system fonts-->
  7. <match target="font">
  8. <edit mode="assign" name="hintstyle">
  9. <const>hintfull</const>
  10. </edit>
  11. </match>
  12. <alias>
  13. <family>sans-serif</family>
  14. <prefer>
  15. <family>Ubuntu</family>
  16. <family>Droid Sans</family>
  17. <family>TakaoPGothic</family>
  18. </prefer>
  19. <default><family>DejaVu Sans</family></default>
  20. </alias>
  21. <alias>
  22. <family>serif</family>
  23. <prefer>
  24. <family>Gentium Plus</family>
  25. <family>Droid Serif</family>
  26. <family>TakaoPMincho</family>
  27. </prefer>
  28. <default><family>DejaVu Serif</family></default>
  29. </alias>
  30. <alias>
  31. <family>monospace</family>
  32. <prefer>
  33. <family>Ubuntu Mono</family>
  34. <family>Droid Sans Mono Slashed</family>
  35. </prefer>
  36. <accept>
  37. <family>TakaoGothic</family>
  38. </accept>
  39. <default><family>DejaVu Sans Mono</family></default>
  40. </alias>
  41. <selectfont>
  42. <rejectfont>
  43. <!-- It's a sin this pile of random glyphs is called a "font" -->
  44. <glob>/usr/share/fonts/unifont</glob>
  45. </rejectfont>
  46. </selectfont>
  47. </fontconfig>
Add Comment
Please, Sign In to add comment