brandboat

Tyler says the things you own, end up owning you.

Chrome 標籤亂碼

Ubuntu 解決辦法如下:

sudo vim /etc/fonts/conf.d/49-sansserif.conf 內容如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
If the font still has no generic name, add sans-serif
-->
  <match target="pattern">
    <test qual="all" name="family" compare="not_eq">
      <string>sans-serif</string>
    </test>
    <test qual="all" name="family" compare="not_eq">
      <string>serif</string>
    </test>
    <test qual="all" name="family" compare="not_eq">
      <string>monospace</string>
    </test>
    <edit name="family" mode="append_last">
      <string>sans-serif</string>
    </edit>
  </match>
</fontconfig>

1
2
3
<edit name="family" mode="append_last">
  <string>sans-serif</string>
</edit>

中的 sans-serif 改為你想要的中文字型,若不知道就填寫 Ubuntu