dotfiles

Config files from my daily system
Index Commits Files Refs README
.config/fontconfig/fonts.conf (1018B)
   1 <?xml version="1.0" encoding="UTF-8"?>
   2 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
   3 <fontconfig>
   4     <match target="font">
   5         <edit name="antialias" mode="assign">
   6             <bool>true</bool>
   7         </edit>
   8         <edit name="hinting" mode="assign">
   9             <bool>true</bool>
  10         </edit>
  11         <edit name="hintstyle" mode="assign">
  12             <const>hintmedium</const>
  13         </edit>
  14         <edit name="rgba" mode="assign">
  15             <const>none</const>
  16         </edit>
  17         <edit name="autohint" mode="assign">
  18             <bool>true</bool>
  19         </edit>
  20         <edit name="lcdfilter" mode="assign">
  21             <const>lcdnone</const>
  22         </edit>
  23         <edit name="dpi" mode="assign">
  24             <double>102</double>
  25         </edit>
  26     </match>
  27     <match target="font">
  28         <test name="weight" compare="more">
  29             <const>medium</const>
  30         </test>
  31         <edit name="autohint" mode="assign">
  32             <bool>true</bool>
  33         </edit>
  34     </match>
  35 </fontconfig>