ArchLinuxとLXDEをインストールしたばかりですが、すべて正常に動作していますが、フォントのレンダリングは最適ではありません。 フォント構成に関するウィキ を読み、外部の情報源を使用して、以下を構築します/ 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>
これにもかかわらず、フォントのレンダリングはまだ最適ではありません
何が欠けていますか?
私は解決策を見つけました: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/
次に、/usr/share/fonts/75dpi
と/usr/share/fonts/100dpi
でmkfontdir
を実行すると、問題は解決しました。