Ubuntu 中搜狗输入法在 WPS 中无法键入中文

之前使用的 Ubuntu 16.04 一直使用的Unity桌面环境。这次决定换成 Gnome 桌面换件,安装一切顺利。但是完成之后发现 WPS和 LibreOffice 无法使用中文输入。重装WPS和搜狗输入法都不行。认真百度之后搜索到如下解决办法。

LibreOffice

安装libreoffice-gtk3、libreoffice-gnome软件包。

WPS

在/usr/bin/wps文件开头中增加如下两行,如下:

1
2
3
4
5
6
7
8
1 #!/bin/bash                                                                     
2 export XMODIFIERS="@im=fcitx" #新增加行
3 export QT_IM_MODULE="fcitx" #新增加行
4 gOpt=
5 #gOptExt=-multiply
6 gTemplateExt=("wpt" "dot" "dotx")
7 gBinPath=$(dirname "$0")
8 if [ -d "${gBinPath}/office6" ]; then