Guest User

Untitled

a guest
Mar 4th, 2018
803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4.  
  5. <!-- Not sure what this does -->
  6. <match target="scan">
  7. <test name="family">
  8. <string>Noto Color Emoji</string>
  9. </test>
  10. <edit name="scalable" mode="assign">
  11. <bool>true</bool>
  12. </edit>
  13. </match>
  14.  
  15. <!-- Add icons as first font for any missing glyphs -->
  16. <match target="pattern">
  17. <edit name="family" mode="prepend_first">
  18. <string>Icons</string>
  19. </edit>
  20. </match>
  21.  
  22. <!-- Want great emojies! -->
  23. <match target="pattern">
  24. <edit name="family" mode="prepend_first">
  25. <string>Noto Color Emoji</string>
  26. </edit>
  27. </match>
  28.  
  29. <alias>
  30. <family>monospace</family>
  31. <prefer>
  32. <family>Hack</family>
  33. <!-- <family>DejaVu Sans Mono</family> -->
  34. </prefer>
  35. </alias>
  36.  
  37. <alias>
  38. <family>serif</family>
  39. <prefer>
  40. <family>Hack</family>
  41. <!-- <family>DejaVu Sans Mono</family> -->
  42. </prefer>
  43. </alias>
  44. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment