방금 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>
내가 무엇을 놓치고 있나요?
답변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
해결되었습니다.