Project

General

Profile

Actions

Fontconfig-210

После обновления до fontconfig-2.10 имеем:

Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.

Нехорошо

Смотрим, что у нас есть:

cat ~/.fonts.conf

<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
 <match target="font" >
  <edit mode="assign" name="rgba" >
   <const>none</const>
  </edit>
 </match>
 <match target="font" >
  <edit mode="assign" name="hinting" >
   <bool>true</bool>
  </edit>
 </match>
 <match target="font" >
  <edit mode="assign" name="hintstyle" >
   <const>hintmedium</const>
  </edit>
 </match>
 <match target="font" >
  <edit mode="assign" name="antialias" >
   <bool>true</bool>
  </edit>
 </match>
</fontconfig>

Решаем

sudo eselect fontconfig enable 10-no-sub-pixel.conf
sudo eselect fontconfig enable 10-autohint.conf

Updated by Андрей Волков about 13 years ago · 1 revisions