리눅스에서 폰트 이질감 없애기 가독성 향상
예전에는 주로 나눔폰트가 설치되었는데, 여전히 윈도우처럼 가독성이 좋지 않았다.
최근에는 구글에서 만든 Noto Sans CJK 폰트가 적용되면서 훨씬 가독성이 좋아졌지만, 나는 크롬이나, 파이어폭스에서 최소 글자 크기를 13 정도로 설정해주고, 기본 폰트 설정을 바꿔주는 편이다.
GNOME-Tweak-Tool을 이용해 폰트 설정을 아래와 같이 바꿔준다.
그리고 폰트 설정파일을 아래의 경로로 복사해준다. 폰트 가독성이 훨씬 좋아진다.
~/config/fontconfig/fonts.conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <?xml version='1.0'?> <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> <fontconfig> <match target="font"> <edit mode="assign" name="rgba"> <const>rgb</const> </edit> </match> <match target="font"> <edit mode="assign" name="hinting"> <bool>false</bool> </edit> </match> <match target="font"> <edit mode="assign" name="hintstyle"> <const>hintnone</const> </edit> </match> <match target="font"> <edit mode="assign" name="antialias"> <bool>true</bool> </edit> </match> <match target="font"> <edit name="lcdfilter" mode="assign"> <const>lcddefault</const> </edit> </match> </fontconfig> |
많은 분들에게 도움이 되었으면 한다.