Skip to content

Instantly share code, notes, and snippets.

@anthonywong
Last active March 22, 2017 12:50
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 anthonywong/6105b996531e98399874 to your computer and use it in GitHub Desktop.
Save anthonywong/6105b996531e98399874 to your computer and use it in GitHub Desktop.
Latin 字體 fontconfig 設定檔
<fontconfig>
<match target="pattern">
<test name="family">
<string>serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Noto Serif</string>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>sans-serif</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Ubuntu</string>
<string>Noto Sans</string>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>monospace</string>
</test>
<edit name="family" mode="prepend" binding="strong">
<string>Source Code Pro</string>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment