Advertisement
Guest User

62-firefox-symbola.conf

a guest
Dec 9th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <?xml version='1.0'?>
  2. <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
  3. <fontconfig>
  4.  
  5. <!-- If the Symbola font is installed, prevent it from being used, but don't blacklist
  6. the actual font name as Firefox only supports this font family hardcoded for monochromatic
  7. text presentation of emoji/symbols. VS15/default presentations. -->
  8. <!-- deleting file property instead of family works too, and prevents chrome from segfaulting. -->
  9.  
  10. <match target="scan">
  11. <test name="family">
  12. <string>Symbola</string>
  13. </test>
  14. <!-- <test name="prgname">
  15. <string>firefox</string>
  16. </test> -->
  17. <!-- <edit name="family" mode="delete" /> -->
  18. <edit name="file" mode="delete" />
  19. </match>
  20.  
  21. <!-- This 2nd block makes the font family also represent the Symbola font.
  22. It will still leave the font usable under it's original name, but
  23. must prepend Symbola to the front of the list.. -->
  24. <match target="scan">
  25. <test name="family" >
  26. <string>Noto Sans Symbols2</string>
  27. </test>
  28. <!-- <test name="prgname">
  29. <string>firefox</string>
  30. </test> -->
  31. <edit name="family" mode="prepend">
  32. <string>Symbola</string>
  33. </edit>
  34. </match>
  35.  
  36. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement