Advertisement
Red-ex

local.conf

Feb 21st, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.82 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4.   <!-- settings go here -->
  5.   <match target="font">
  6.     <edit name="antialias" mode="assign">
  7.       <bool>true</bool>
  8.     </edit>
  9.   </match>
  10.   <match target="font">
  11.     <edit name="hinting" mode="assign">
  12.       <bool>true</bool>
  13.     </edit>
  14.   </match>
  15.   <match target="font">
  16.     <edit name="autohint" mode="assign">
  17.       <bool>false</bool>
  18.     </edit>
  19.   </match>
  20.   <match target="font">
  21.     <edit name="hintstyle" mode="assign">
  22.       <const>hintslight</const>
  23.     </edit>
  24.   </match>
  25.   <match target="font">
  26.     <edit name="rgba" mode="assign">
  27.       <const>rgb</const>
  28.     </edit>
  29.   </match>
  30.   <match target="font">
  31.     <edit name="lcdfilter" mode="assign">
  32.       <const>lcddefault</const>
  33.     </edit>
  34.   </match>
  35. </fontconfig>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement