fcitx 在 WPS for Linux 中无法使用

问题: fcitx 在 WPS for Linux 中调不出来,在 Linux 的其他应用中可以正常使用。
原因:环境变量未正确设置。
解决: Google 搜索,来自 Linux 教程

/usr/bin/wps (word)、/usr/bin/wpp (powerpoint)、/usr/bin/et (excel)脚本的开始,加入 export XMODIFIERS="@im=fcitx"export QT_IM_MODULE="fcitx"
以 wps 为例:

1
2
3
4
5
6
7
8
9
$ sudo vi /usr/bin/wps
#!/bin/bash

export XMODIFIERS="@im=fcitx"
export QT_IM_MODULE="fcitx"

gOpt=
#gOptExt=-multiply
gTemplateExt=("wpt" "dot" "dotx")