赞
踩
在Manjaro Linux上安装和配置输入法,通常会选择Fcitx5或Ibus作为输入法框架。以下是详细步骤,包括安装和配置输入法框架以及安装中文输入法。
安装过程中冲突
卸载老版本 fcitx-4.*即可, 应为全面拥抱Fcitx5
参考文献: Fcitx5 doesn’t type Chinese characters anywhere - Support / Software & Applications - Manjaro Linux Forum
https://forum.manjaro.org/t/fcitx5-doesnt-type-chinese-characters-anywhere/111656
Fcitx5是一个常用的输入法框架,支持多种输入法引擎和语言。
打开终端,输入以下命令来安装Fcitx5及其配置工具:
sudo pacman -S fcitx5 fcitx5-configtool fcitx5-gtk fcitx5-qt
例如,可以安装Rime或者拼音输入法引擎:
sudo pacman -S fcitx5-chinese-addons
sudo pacman -S fcitx5-rime
需要配置环境变量来确保Fcitx5正常工作。编辑你的shell配置文件(例如:~/.xprofile
或~/.bashrc
)并添加以下内容:
export GTK_IM_MODULE=fcitx5
export QT_IM_MODULE=fcitx5
export XMODIFIERS=@im=fcitx5
如果你使用的是~/.bashrc
,需要在编辑后重新加载配置:
source ~/.bashrc
启动Fcitx5配置工具来配置输入法:
fcitx5-configtool
在配置工具中:
编辑~/.xprofile
文件,确保Fcitx5在登录时自动启动:
echo "export GTK_IM_MODULE=fcitx5" >> ~/.xprofile
echo "export QT_IM_MODULE=fcitx5" >> ~/.xprofile
echo "export XMODIFIERS=@im=fcitx5" >> ~/.xprofile
echo "fcitx5 &" >> ~/.xprofile
为了更好地显示中文字符,可以安装一些常用的中文字体:
sudo pacman -S noto-fonts-cjk
通过以上步骤,你已经在Manjaro Linux上成功安装和配置了Fcitx5输入法,并添加了中文输入法引擎。现在你可以在桌面环境中使用中文输入法进行输入。重新登录或者重启系统后,Fcitx5应该会自动启动,并且你可以开始使用中文输入法进行输入。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。