Skip to content

Instantly share code, notes, and snippets.

@takaki
Created October 4, 2012 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takaki/3832030 to your computer and use it in GitHub Desktop.
Save takaki/3832030 to your computer and use it in GitHub Desktop.
${HOME}/.config/font-manager/local.conf: It solves that Mincho is displayed in the Gothic font.
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="pattern">
<test qual="any" name="family">
<string>Ryumin</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>IPAMincho</string>
</edit>
</match>
<match target="pattern">
<test qual="any" name="family">
<string>Gothic-BBB</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>IPAGothic</string>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment