Advertisement
Guest User

fonts.conf

a guest
Apr 30th, 2018
1,208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.55 KB | None | 0 0
  1. <?xml version='1.0'?>
  2. <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
  3. <fontconfig>
  4.  <dir>~/.fonts</dir>
  5.  
  6.  <match target="font">
  7.   <edit mode="assign" name="antialias">
  8.    <bool>true</bool>
  9.   </edit>
  10.  </match>
  11.  
  12.  <match target="font">
  13.   <edit mode="assign" name="rgba">
  14.    <const>none</const>
  15.   </edit>
  16.  </match>
  17.  
  18.  <match target="font">
  19.   <edit mode="assign" name="hinting">
  20.    <bool>true</bool>
  21.   </edit>
  22.  </match>
  23.  
  24.  <match target="font">
  25.   <edit mode="assign" name="hintstyle">
  26.    <const>hintfull</const>
  27.   </edit>
  28.  </match>
  29.  
  30. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement