|
目标:让mozilla-firefox能漂亮的显示中文和英文,能用fcitx输入中文。
环境:debian 3.1r0默认安装+x-window-system+mozilla-firefox+fcitx+ion2
动手:
1.从windows拷贝2个字体文件过来, simsun.ttf tahoma.ttf.拷贝到/usr/local/share/fonts/目录下。
2.建立/etc/fonts/local.conf,内容如下
[code:1]
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<include ignore_missing="yes">/var/lib/defoma/fontconfig.d/fonts.conf</include>
<!-- Uncomment below to enable bitmapped fonts -->
<!--
<dir>/usr/X11R6/lib/X11/fonts</dir>
-->
<!-- Uncomment below to enable subpixel rendering -->
<!--
<match target="font">
<test qual="all" name="rgba">
<const>unknown</const>
</test>
<edit name="rgba" mode="assign"><const>rgb</const></edit>
</match>
-->
<match target="font">
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit name="spacing">
<const>proportional</const>
</edit>
<edit name="globaladvance">
<bool>false</bool>
</edit>
</match>
<match target="font">
<test qual="any" name="family">
<string>SimSun</string>
</test>
<edit name="antialias" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
[/code:1]
3.设置mozilla的界面显示字体
在用户“家”目录的 .mozilla/firefox/*.default/chrome/中建立 userChrome.css 文件,内容如下
[code:1]*{
font-size: 3.5mm !important;
font-family: tahoma,simsun !important;
}
[/code:1]
4.设置locale,和environment.
修改/etc/environment为
[code:1]
LANGUAGE="en_US:en_GB:en"
XMODIFIERS=@im=fcitx
LC_CTYPE=zh_CN.GB2312
LANG=en_US.ISO-8859-1
[/code:1]
修改 /etc/locale.gen为
[code:1]
en_US ISO-8859-1
zh_CN GB2312
[/code:1]
然后用root执行 locale-gen.
5.设置mozilla-firefox的字体配置,把简体中文和西方字体(Western)都设置成Tahoma.如果有必要,可以设置字体的最小显示大小,我设置的是14.
6.ok,重启一下X,一切ok.
7.fcitx没有加到X的起动里,我手工打开的.你这个可以自己去修改.
8.浏览CU的效果图.
|
|