欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

manjaro安装后的配置

程序员文章站 2022-11-06 20:50:13
1.添加中科大源 参考https://blog.csdn.net/liyunfu233/article/details/87381017 sudo nano /etc/pacman.conf 在文末添加 [archlinuxcn] SigLevel = Optional TrustedOnly Se ......

1.添加中科大源

参考

sudo nano /etc/pacman.conf

在文末添加

[archlinuxcn]
siglevel = optional trustedonly
server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch

导入gpg key

sudo pacman -syy && sudo pacman -s archlinuxcn-keyring

 

2.安装chrome

sudo pacman -s google-chrome

 

3.安装谷歌输入法

sudo pacman -s fcitx-im #默认全部安装
sudo pacman -s fcitx-configtool
sudo pacman -s fcitx-googlepinyin

编辑输入法配置文件

sudo nano ~/.xprofile

添加以下内容

export lc_all=zh_cn.utf-8
export gtk_im_module=fcitx export qt_im_module=fcitx export xmodifiers="@im=fcitx"

4.重启电脑

在输入法里选择configure current input method即可对输入法进行配置

配置可以参考https://blog.csdn.net/yuanxin_csdn/article/details/91389467