安装 KDE 后,Web 字体变得丑陋

安装 KDE 后,Web 字体变得丑陋

安装后kde 标准在我的 Ubuntu 12.04 上,网络字体(Firefox 和 Chrome)在 Gnome 和 KDE 桌面上都变得丑陋。我该如何恢复好看的网络字体。

答案1

您需要编辑 /home/yourusername/.fonts.conf。

有可能提示已经改变,您需要将其改回 hintslight。

下面是我的样子:

<?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>hintslight</const>
  </edit>
 </match>
 <match target="font">
  <edit mode="assign" name="antialias">
   <bool>true</bool>
  </edit>
 </match>
</fontconfig>

相关内容