Advertisement
Kimarite

/etc/fonts/fonts.conf | Debian Buster

Sep 27th, 2019
855
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <!-- /etc/fonts/fonts.conf file to configure system font access -->
  4. <fontconfig>
  5. <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0">
  6. <its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/>
  7. </its:rules>
  8.  
  9. <description>Default configuration file</description>
  10.  
  11. <!--
  12. DO NOT EDIT THIS FILE.
  13. IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
  14. LOCAL CHANGES BELONG IN 'local.conf'.
  15.  
  16. The intent of this standard configuration file is to be adequate for
  17. most environments. If you have a reasonably normal environment and
  18. have found problems with this configuration, they are probably
  19. things that others will also want fixed. Please submit any
  20. problems to the fontconfig bugzilla system located at fontconfig.org
  21.  
  22. Note that the normal 'make install' procedure for fontconfig is to
  23. replace any existing fonts.conf file with the new version. Place
  24. any local customizations in local.conf which this file references.
  25.  
  26. Keith Packard
  27. -->
  28.  
  29. <!-- Font directory list -->
  30.  
  31. <dir>/usr/share/fonts</dir>
  32. <dir>/usr/X11R6/lib/X11/fonts</dir> <dir>/usr/local/share/fonts</dir>
  33. <dir prefix="xdg">fonts</dir>
  34. <!-- the following element will be removed in the future -->
  35. <dir>~/.fonts</dir>
  36.  
  37. <!--
  38. Accept deprecated 'mono' alias, replacing it with 'monospace'
  39. -->
  40. <match target="pattern">
  41. <test qual="any" name="family">
  42. <string>mono</string>
  43. </test>
  44. <edit name="family" mode="assign" binding="same">
  45. <string>monospace</string>
  46. </edit>
  47. </match>
  48.  
  49. <!--
  50. Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
  51. -->
  52. <match target="pattern">
  53. <test qual="any" name="family">
  54. <string>sans serif</string>
  55. </test>
  56. <edit name="family" mode="assign" binding="same">
  57. <string>sans-serif</string>
  58. </edit>
  59. </match>
  60.  
  61. <!--
  62. Accept deprecated 'sans' alias, replacing it with 'sans-serif'
  63. -->
  64. <match target="pattern">
  65. <test qual="any" name="family">
  66. <string>sans</string>
  67. </test>
  68. <edit name="family" mode="assign" binding="same">
  69. <string>sans-serif</string>
  70. </edit>
  71. </match>
  72.  
  73. <!--
  74. Ignore dpkg temporary files created in fonts directories
  75. -->
  76. <selectfont>
  77. <rejectfont>
  78. <glob>*.dpkg-tmp</glob>
  79. </rejectfont>
  80. </selectfont>
  81. <selectfont>
  82. <rejectfont>
  83. <glob>*.dpkg-new</glob>
  84. </rejectfont>
  85. </selectfont>
  86.  
  87. <!--
  88. Load local system customization file
  89. -->
  90. <include ignore_missing="yes">conf.d</include>
  91.  
  92. <!-- Font cache directory list -->
  93.  
  94. <cachedir>/var/cache/fontconfig</cachedir>
  95. <cachedir prefix="xdg">fontconfig</cachedir>
  96. <!-- the following element will be removed in the future -->
  97. <cachedir>~/.fontconfig</cachedir>
  98.  
  99. <config>
  100. <!--
  101. Rescan configuration every 30 seconds when FcFontSetList is called
  102. -->
  103. <rescan>
  104. <int>30</int>
  105. </rescan>
  106. </config>
  107.  
  108. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement