blob: d94ab3b65a9d6c8927fdbbd69bbd6103acddc4c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Sogou Pinyin for Linux
Support `Wayland` and `X11`
## Wayland环境变量的设置
编辑或创建`~/.fcitx_env.sh`文件,添加下列内容:
```bash
export XMODIFIERS=@im=fcitx
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export SDL_IM_MODULE=fcitx
export GLFW_IM_MODULE=fcitx
```
最好在`~/.bashrc`和`~/.zshrc`中都添加下面的内容:
```bash
source ~/.fcitx_env.sh
```
```bash
vim ~/.pam_environment
```
```
GTK_IM_MODULE=fcitx
QT_IM_MODULE=fcitx
XMODIFIERS=@im=fcitx
```
## 开机自启
`vim ~/.xinitrc`
```
fcitx5 &
```
## Ref
https://wszqkzqk.github.io/2024/03/09/WPS-Fcitx5/
|