如何在ArchLinux/LXDE中正确设置字体渲染?

如何在ArchLinux/LXDE中正确设置字体渲染?

我刚刚安装了 ArchLinux 和 LXDE,一切正常,但字体渲染不是最佳的。正在阅读关于字体配置的 wiki并使用外部信息源,我构建了以下内容/etc/fonts/fonts.conf文件

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

尽管如此,字体渲染仍然不是最佳的 在此输入图像描述

我缺少什么?

答案1

我找到了解决方案:未创建 X 字体文件的索引。

我在查看/var/log/Xorg.0.log日志文件时发现了这一点。

$ grep /fonts /var/log/Xorg.0.log.old

[    13.492] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[    13.493] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    13.493]    (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    13.493] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[    13.494]    (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/

然后我继续运行mkfontdir/usr/share/fonts/75dpi问题/usr/share/fonts/100dpi就解决了。

相关内容