10 lines
192 B
Bash
Executable File
10 lines
192 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
mkdir -p ~/.config/environment.d
|
|
cat > ~/.config/environment.d/fcitx5.conf << 'EOF'
|
|
GTK_IM_MODULE=fcitx5
|
|
QT_IM_MODULE=fcitx5
|
|
XMODIFIERS=@im=fcitx5
|
|
GLFW_IM_MODULE=ibus
|
|
EOF
|