Ubuntu에서 Anti-alias 설정하기
1. /etc/fonts/conf.d/29-language-selector-ko-kr.conf 파일을 관리자모드로 열어 본다.
터미널에서는
sudo gedit /etc/fonts/conf.d/29-language-selector-ko-kr.conf
라고 하면 되겠다.
2. 아래 부분을 찾아 다음과 같이 주석처리한다.
<!-- Turn off antialias and autohint for Korean fonts depending on pixelsize -->
<!-- <match target="font">
<test name="lang" compare="contains">
<string>ko</string>
</test>
<test name="pixelsize" compare="more">
<int>10</int>
</test>
<test name="pixelsize" compare="less">
<int>22</int>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
<edit name="hintstyle" mode="assign">
<const>hintmedium</const>
</edit>
</match> -->
3. 하나 더 찾아서 주석처리한다.
<!-- Turn off antialias and autohint for ttf-alee depending on pixelsize -->
<!-- <match target="font">
<test name="family">
<string>Guseul</string>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<match target="font">
<test name="family">
<string>Guseul</string>
<string>Guseul Mono</string>
</test>
<test name="pixelsize" compare="more">
<int>11</int>
</test>
<test name="pixelsize" compare="less">
<int>16</int>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
</match> -->
4. 저장하면, 적용된다. 끝...