Guest User

Untitled

a guest
Oct 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4.  
  5. <match target="scan">
  6. <test name="family">
  7. <string>Noto Color Emoji</string>
  8. </test>
  9. <edit name="scalable" mode="assign">
  10. <bool>true</bool>
  11. </edit>
  12. <edit name="pixelsize" mode="assign">
  13. <double>18</double>
  14. </edit>
  15. </match>
  16.  
  17. <match>
  18. <test name="family"><string>sans-serif</string></test>
  19. <edit name="family" mode="prepend" binding="weak">
  20. <string>Noto Color Emoji</string>
  21. </edit>
  22. </match>
  23.  
  24. <match>
  25. <test name="family"><string>serif</string></test>
  26. <edit name="family" mode="prepend" binding="weak">
  27. <string>Noto Color Emoji</string>
  28. </edit>
  29. </match>
  30.  
  31. <match>
  32. <test name="family"><string>Apple Color Emoji</string></test>
  33. <edit name="family" mode="prepend" binding="strong">
  34. <string>Noto Color Emoji</string>
  35. </edit>
  36. </match>
  37.  
  38. <match target="pattern">
  39. <!-- If the requested font is monospace -->
  40. <test qual="any" name="family">
  41. <string>monospace</string>
  42. </test>
  43. <!-- Followed by Color Emoji -->
  44. <edit name="family" mode="prepend_first">
  45. <string>Noto Color Emoji</string>
  46. </edit>
  47. </match>
  48.  
  49. </fontconfig>
Add Comment
Please, Sign In to add comment