再度フォント

フリーの日本語フォント

http://sourceforge.jp/projects/ipafonts/

  • 梅フォント

http://sourceforge.jp/projects/ume-font/

  • さざなみフォント

http://sourceforge.jp/projects/efont/

  • M+フォント

http://sourceforge.jp/projects/mplus-fonts/

梅フォントがみやすいと思いました。

メモ。
~/.fonts ディレクトリにフォントファイルを入れます
~/.fonts.conf.d ディレクトリに設定を書いたconfファイルを入れます

<fontconfig>
    <match target="font">
        <test name="family" compare="eq">
			<string>IPAMincho</string>
			<string>IPAPMincho</string>
			<string>IPAGothic</string>
			<string>IPAPGothic</string>			
			<string>Ume Gothic</string>
			<string>Ume P Gothic</string>
        </test>
		<test name="size" compare="less_eq">
			<double>12</double>
		</test>
		<edit name="embolden" mode="assign">
			<bool>false</bool>
		</edit>
        <edit name="autohint" mode="assign">
            <bool>false</bool>
        </edit>
        <edit name="hinting" mode="assign">
            <bool>true</bool>
        </edit>
        <edit name="hintstyle" mode="assign">
			<const>hintslight</const>
        </edit>
		<edit name="spacing" mode="assign">
            <int>100</int>
        </edit>
    </match>
</fontconfig>