Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.17 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.  
  6. <!--
  7. DO NOT EDIT THIS FILE.
  8. IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
  9. LOCAL CHANGES BELONG IN 'local.conf'.
  10.  
  11. The intent of this standard configuration file is to be adequate for
  12. most environments. If you have a reasonably normal environment and
  13. have found problems with this configuration, they are probably
  14. things that others will also want fixed. Please submit any
  15. problems to the fontconfig bugzilla system located at fontconfig.org
  16.  
  17. Note that the normal 'make install' procedure for fontconfig is to
  18. replace any existing fonts.conf file with the new version. Place
  19. any local customizations in local.conf which this file references.
  20.  
  21. Keith Packard
  22. -->
  23.  
  24. <!-- Font directory list -->
  25. <dir>/usr/share/fonts/OTF</dir>
  26. <dir>/usr/share/fonts/TTF</dir>
  27. <dir>/usr/share/fonts/Type1</dir>
  28. <dir>/usr/share/fonts/Speedo</dir>
  29. <dir>/usr/share/fonts/cyrillic</dir>
  30. <dir>/usr/share/fonts/misc</dir>
  31. <dir prefix="xdg">fonts</dir>
  32. <!-- the following element will be removed in the future -->
  33. <dir>~/.fonts</dir>
  34.  
  35. <!-- Commented out font directories:
  36. These are not indexed by default, as fontconfig then seems
  37. to prefer bitmapped fonts in some cases...
  38. <dir>/usr/share/fonts/100dpi</dir>
  39. <dir>/usr/share/fonts/75dpi</dir>
  40. The top-level font directory should also not be indexed, as that
  41. will include the directories of bitmapped fonts:
  42. <dir>/usr/share/fonts</dir>
  43. The empty line below is produced by the FC_FONTPATH macro.
  44. Moving it here so it doesn't become a problem in the future:
  45.  
  46. -->
  47.  
  48. <!--
  49. Accept deprecated 'mono' alias, replacing it with 'monospace'
  50. -->
  51. <match target="pattern">
  52. <test qual="any" name="family">
  53. <string>mono</string>
  54. </test>
  55. <edit name="family" mode="assign" binding="same">
  56. <string>monospace</string>
  57. </edit>
  58. </match>
  59.  
  60. <!--
  61. Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
  62. -->
  63. <match target="pattern">
  64. <test qual="any" name="family">
  65. <string>sans serif</string>
  66. </test>
  67. <edit name="family" mode="assign" binding="same">
  68. <string>sans-serif</string>
  69. </edit>
  70. </match>
  71.  
  72. <!--
  73. Accept deprecated 'sans' alias, replacing it with 'sans-serif'
  74. -->
  75. <match target="pattern">
  76. <test qual="any" name="family">
  77. <string>sans</string>
  78. </test>
  79. <edit name="family" mode="assign" binding="same">
  80. <string>sans-serif</string>
  81. </edit>
  82. </match>
  83.  
  84. <!--
  85. Load local system customization file
  86. -->
  87. <include ignore_missing="yes">conf.d</include>
  88.  
  89. <!-- Font cache directory list -->
  90.  
  91. <cachedir>/var/cache/fontconfig</cachedir>
  92. <cachedir prefix="xdg">fontconfig</cachedir>
  93. <!-- the following element will be removed in the future -->
  94. <cachedir>~/.fontconfig</cachedir>
  95.  
  96. <config>
  97. <!--
  98. These are the default Unicode chars that are expected to be blank
  99. in fonts. All other blank chars are assumed to be broken and
  100. won't appear in the resulting charsets
  101. -->
  102. <blank>
  103. <int>0x0020</int> <!-- SPACE -->
  104. <int>0x00A0</int> <!-- NO-BREAK SPACE -->
  105. <int>0x00AD</int> <!-- SOFT HYPHEN -->
  106. <int>0x034F</int> <!-- COMBINING GRAPHEME JOINER -->
  107. <int>0x0600</int> <!-- ARABIC NUMBER SIGN -->
  108. <int>0x0601</int> <!-- ARABIC SIGN SANAH -->
  109. <int>0x0602</int> <!-- ARABIC FOOTNOTE MARKER -->
  110. <int>0x0603</int> <!-- ARABIC SIGN SAFHA -->
  111. <int>0x06DD</int> <!-- ARABIC END OF AYAH -->
  112. <int>0x070F</int> <!-- SYRIAC ABBREVIATION MARK -->
  113. <int>0x115F</int> <!-- HANGUL CHOSEONG FILLER -->
  114. <int>0x1160</int> <!-- HANGUL JUNGSEONG FILLER -->
  115. <int>0x1680</int> <!-- OGHAM SPACE MARK -->
  116. <int>0x17B4</int> <!-- KHMER VOWEL INHERENT AQ -->
  117. <int>0x17B5</int> <!-- KHMER VOWEL INHERENT AA -->
  118. <int>0x180E</int> <!-- MONGOLIAN VOWEL SEPARATOR -->
  119. <int>0x2000</int> <!-- EN QUAD -->
  120. <int>0x2001</int> <!-- EM QUAD -->
  121. <int>0x2002</int> <!-- EN SPACE -->
  122. <int>0x2003</int> <!-- EM SPACE -->
  123. <int>0x2004</int> <!-- THREE-PER-EM SPACE -->
  124. <int>0x2005</int> <!-- FOUR-PER-EM SPACE -->
  125. <int>0x2006</int> <!-- SIX-PER-EM SPACE -->
  126. <int>0x2007</int> <!-- FIGURE SPACE -->
  127. <int>0x2008</int> <!-- PUNCTUATION SPACE -->
  128. <int>0x2009</int> <!-- THIN SPACE -->
  129. <int>0x200A</int> <!-- HAIR SPACE -->
  130. <int>0x200B</int> <!-- ZERO WIDTH SPACE -->
  131. <int>0x200C</int> <!-- ZERO WIDTH NON-JOINER -->
  132. <int>0x200D</int> <!-- ZERO WIDTH JOINER -->
  133. <int>0x200E</int> <!-- LEFT-TO-RIGHT MARK -->
  134. <int>0x200F</int> <!-- RIGHT-TO-LEFT MARK -->
  135. <int>0x2028</int> <!-- LINE SEPARATOR -->
  136. <int>0x2029</int> <!-- PARAGRAPH SEPARATOR -->
  137. <int>0x202A</int> <!-- LEFT-TO-RIGHT EMBEDDING -->
  138. <int>0x202B</int> <!-- RIGHT-TO-LEFT EMBEDDING -->
  139. <int>0x202C</int> <!-- POP DIRECTIONAL FORMATTING -->
  140. <int>0x202D</int> <!-- LEFT-TO-RIGHT OVERRIDE -->
  141. <int>0x202E</int> <!-- RIGHT-TO-LEFT OVERRIDE -->
  142. <int>0x202F</int> <!-- NARROW NO-BREAK SPACE -->
  143. <int>0x205F</int> <!-- MEDIUM MATHEMATICAL SPACE -->
  144. <int>0x2060</int> <!-- WORD JOINER -->
  145. <int>0x2061</int> <!-- FUNCTION APPLICATION -->
  146. <int>0x2062</int> <!-- INVISIBLE TIMES -->
  147. <int>0x2063</int> <!-- INVISIBLE SEPARATOR -->
  148. <int>0x206A</int> <!-- INHIBIT SYMMETRIC SWAPPING -->
  149. <int>0x206B</int> <!-- ACTIVATE SYMMETRIC SWAPPING -->
  150. <int>0x206C</int> <!-- INHIBIT ARABIC FORM SHAPING -->
  151. <int>0x206D</int> <!-- ACTIVATE ARABIC FORM SHAPING -->
  152. <int>0x206E</int> <!-- NATIONAL DIGIT SHAPES -->
  153. <int>0x206F</int> <!-- NOMINAL DIGIT SHAPES -->
  154. <int>0x2800</int> <!-- BRAILLE PATTERN BLANK -->
  155. <int>0x3000</int> <!-- IDEOGRAPHIC SPACE -->
  156. <int>0x3164</int> <!-- HANGUL FILLER -->
  157. <int>0xFEFF</int> <!-- ZERO WIDTH NO-BREAK SPACE -->
  158. <int>0xFFA0</int> <!-- HALFWIDTH HANGUL FILLER -->
  159. <int>0xFFF9</int> <!-- INTERLINEAR ANNOTATION ANCHOR -->
  160. <int>0xFFFA</int> <!-- INTERLINEAR ANNOTATION SEPARATOR -->
  161. <int>0xFFFB</int> <!-- INTERLINEAR ANNOTATION TERMINATOR -->
  162. </blank>
  163. <!--
  164. Rescan configuration every 30 seconds when FcFontSetList is called
  165. -->
  166. <rescan>
  167. <int>30</int>
  168. </rescan>
  169. </config>
  170.  
  171. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement