Fedora 20에서 Awesome 3.5를 사용하고 있는데 작업 표시줄의 글꼴 렌더링이 정말 나쁩니다. https://i.stack.imgur.com/pOE0Y.png
나는 가지고있다
Xft.dpi:96
Xft.antialias:1
Xft.hinting:1
Xft.hintstyle:hintslight
Xft.rgba:rgb
Xft.lcdfilter:lcddefault
내 .Xresources 및 .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>
저는 Tamsyn 9를 사용하고 있는데 모든 글꼴에서 이런 현상이 발생합니다. 글꼴 렌더링을 더 좋게 만드는 방법이 있습니까?
답변1
첫째, X 리소스 설정은 $XDG_CONFIG_HOME/fontconfig/fonts.conf에 의해 무시됩니다. 혼란을 최소화하려면 이들 중 하나를 사용하십시오. 바라보다1. 이 답변의 나머지 부분에서는 X 리소스를 사용하고 있다고 가정합니다.
다음으로, Fontconfig는 다양한 프롬프트 스타일을 지원합니다. 시도해 보거나 hintnone
마음 에 들지 않으면 시도해 hintmeduim
보세요 . 바라보다hintfull
hintslight
2.
마지막으로 DPI 설정이 올바른지 확인하세요. 화면 해상도를 실제 크기로 나누어서 계산할 수 있습니다( 를 통해 사용 가능) xrandr
. 바라보다삼.
참고: ~/.fonts.conf는 더 이상 사용되지 않습니다. X 리소스를 사용하지 않으려면 대신 $XDG_CONFIG_HOME/fontconfig/fonts.conf를 사용하십시오. 바라보다4.