Created
October 21, 2012 09:55
-
-
Save myuhe/3926563 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="font"> | |
<edit name="embeddedbitmap" mode="assign"> | |
<bool>false</bool> | |
</edit> | |
<edit name="antialias" mode="assign"> | |
<bool>true</bool> | |
</edit> | |
<edit name="hinting" mode="assign"> | |
<bool>false</bool> | |
</edit> | |
<test name="weight" compare="more"> | |
<const>medium</const> | |
</test> | |
<edit name="autohint" mode="assign"> | |
<bool>false</bool> | |
</edit> | |
<edit name="hintstyle" mode="assign"> | |
<const>hintmedium</const> | |
</edit> | |
<!-- <edit name="rgba" mode="assign"> --> | |
<!-- <const>true</const> --> | |
<!-- </edit> --> | |
<edit name="lcdfilter" mode="assign"> | |
<const>lcddefault</const> | |
</edit> | |
</match> | |
<match target="pattern"> | |
<test name="family" qual="any"> | |
<string>sans-serif</string> | |
</test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>Migu 2M</string> | |
<string>TakaoPGothic</string> | |
<string>VL Gothic</string> | |
<string>DejaVu Sans</string> | |
<string>IPAMonaPGothic</string> | |
</edit> | |
</match> | |
<match target="pattern"> | |
<test name="family" qual="any"> | |
<string>serif</string> | |
</test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>Migu 2M</string> | |
<string>TakaoPGothic</string> | |
<string>VL Gothic</string> | |
<string>DejaVu Sans</string> | |
<string>IPAMonaPGothic</string> | |
</edit> | |
</match> | |
<match target="pattern"> | |
<test name="family" qual="any"> | |
<string>monospace</string> | |
</test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>Migu 2M</string> | |
<string>TakaoPGothic</string> | |
<string>VL Gothic</string> | |
<string>DejaVu Sans</string> | |
<string>IPAMonaPGothic</string> | |
</edit> | |
</match> | |
<!-- serif, monospaceも同様に変更 --> | |
<!-- <match target="pattern"> --> | |
<!-- <test name="family" compare="eq"> --> | |
<!-- <string>sans-serif</string> --> | |
<!-- </test> --> | |
<!-- <edit name="family" mode="prepend"> --> | |
<!-- <string>VL PGothic</string> --> | |
<!-- <string>Migu 2M</string> --> | |
<!-- </edit> --> | |
<!-- </match> --> | |
<!-- <match target="pattern"> --> | |
<!-- <test name="family" compare="eq"> --> | |
<!-- <string>serif</string> --> | |
<!-- </test> --> | |
<!-- <edit name="family" mode="prepend"> --> | |
<!-- <string>VL PGothic</string> --> | |
<!-- <string>Migu 2M</string> --> | |
<!-- </edit> --> | |
<!-- </match> --> | |
<!-- <match target="pattern"> --> | |
<!-- <test name="family" compare="eq"> --> | |
<!-- <string>monospace</string> --> | |
<!-- </test> --> | |
<!-- <edit name="family" mode="prepend"> --> | |
<!-- <string>VL PGothic</string> --> | |
<!-- <string>Migu 2M</string> --> | |
<!-- </edit> --> | |
<!-- </match> --> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment