- 论坛徽章:
- 0
|
用 scim-bridge 改善 scim 在 Ubuntu 中的表现Friday, 16. June 2006, 05:31:22
Ubuntu
,
中文输入
今天看到 IRC 里再讨论 scim-bridge。我很喜欢 scim,但是确实在有些场合 scim 会造成一些莫名其妙的问题。似乎使用
scim-bridge 可以解决。IRC 里有人告诉我它是用 C 代替了 C++ 编写的,可以解决原来 scim 和 acroread /
realplay / vmplayer 等包不兼容的问题。
新立得里面 scim-bridge 的介绍是这样的:
another input method module for SCIM
scim-bridge is yet another IM (input method) module for SCIM. It
communicates with SCIM over sockets, and is designed to be small
and simple.
.
SCIM is the Smart Common Input Method, a common platform for
allowing input of complex characters not easily available on
latin-character keyboards.
.
Homepage:
http://www.scim-im.org
到 Ubuntu 中文 Wiki 搜索了一下,快速设置指南里面也提到了 scim-bridge 的设置,前几天还没看到。
安装设置过程
安装 scim-bridge。如果没有安装 scim-qtimm,也一并安装。
sudo apt-get install scim-bridge scim-qtimm
编辑 im-switch 生成的 scim 配置文件:
sudo gedit /etc/X11/xinit/xinput.d/zh_CN
改为:
XIM=SCIM
if [ -e /usr/bin/skim ]; then
XIM_PROGRAM=/usr/bin/skim
else
XIM_PROGRAM=/usr/bin/scim
fi
XIM_ARGS="-d"
GTK_IM_MODULE=scim-bridge
QT_IM_MODULE=scim
DEPENDS="scim,scim-gtk2-immodule | scim-qtimm"
----
转载请注明“转自粲言堂
[url=http://my.opera.com/xuecan/]http://my.opera.com/xuecan/
”。
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/21642/showart_175873.html |
|