diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-12-06 21:55:02 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-12-06 21:55:02 +0800 |
commit | c51a8d9f62ba9fd260ab3d4cde164c081ed20988 (patch) | |
tree | cbd106acbad1498d50989a4993288f1901e414eb /_config/fontconfig/conf.d/65-noto-cjk-zh-cn.conf | |
parent | ed5c60d80b163b4ba7204d7ab694c0ca0607cffa (diff) | |
download | dotfiles-c51a8d9f62ba9fd260ab3d4cde164c081ed20988.tar.bz2 |
fontconfig: Re-order configs; Move "fonts.conf" as "50-user.conf"
NOTE:
Explicitly set the orders for Noto CJK fonts (SC, TC, JP, KR), in order
to get rid of "LC_CTYPE" environment variable.
Therefore, the preferred English fonts (e.g., Source Code Pro, Source
Sans Pro) are by default used, avoiding the Chinese fonts being prepend
at the beginning.
Diffstat (limited to '_config/fontconfig/conf.d/65-noto-cjk-zh-cn.conf')
-rw-r--r-- | _config/fontconfig/conf.d/65-noto-cjk-zh-cn.conf | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/_config/fontconfig/conf.d/65-noto-cjk-zh-cn.conf b/_config/fontconfig/conf.d/65-noto-cjk-zh-cn.conf new file mode 100644 index 0000000..ae0a20f --- /dev/null +++ b/_config/fontconfig/conf.d/65-noto-cjk-zh-cn.conf @@ -0,0 +1,59 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<fontconfig> + + <!-- + Google Noto CJK font configurations for simplified Chinese + + Credit: + * Fedora package: google-noto-cjk-fonts + --> + + <!-- sans-serif --> + <match> + <test name="lang"> + <string>zh-cn</string> + </test> + <test name="family"> + <string>sans-serif</string> + </test> + <edit name="family" mode="prepend"> + <string>Noto Sans CJK SC</string> + </edit> + </match> + <match> + <test name="lang"> + <string>zh-sg</string> + </test> + <test name="family"> + <string>sans-serif</string> + </test> + <edit name="family" mode="prepend"> + <string>Noto Sans CJK SC</string> + </edit> + </match> + + <!-- monospace --> + <match> + <test name="lang"> + <string>zh-cn</string> + </test> + <test name="family"> + <string>monospace</string> + </test> + <edit name="family" mode="prepend"> + <string>Noto Sans Mono CJK SC</string> + </edit> + </match> + <match> + <test name="lang"> + <string>zh-sg</string> + </test> + <test name="family"> + <string>monospace</string> + </test> + <edit name="family" mode="prepend"> + <string>Noto Sans Mono CJK SC</string> + </edit> + </match> +</fontconfig> |