TIP
Manjaro Linux的安装及配置
# 下载官方iso(我选的是只有2G大小的Minimal无任何预装软件)
https://manjaro.org/downloads/official/gnome/ (opens new window)
# 配置国内源
sudo pacman-mirrors -i -c China -m rank
1
# 设置 archlinuxcn 源,antergos源,arch4edu源:(都是基于Arch的源)
sudo nano /etc/pacman.conf
1
[archlinuxcn]
SigLevel = Optional TrustedOnly
#清华源
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
[antergos]
SigLevel = TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/antergos/$repo/$arch
[arch4edu]
SigLevel = TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/arch4edu/$arch
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
# 更新源列表
sudo pacman-mirrors -g
1
# ARU包管理工具
sudo pacman -S yay base-devel
1
# 更新yay(软件)数据库并全面更新系统
#我都是两个都跟新下......
sudo pacman -Syyu
or
yay -Syyu
1
2
3
4
2
3
4
# 防止PGP签名错误
yay -S archlinuxcn-keyring antergos-keyring
1
# 安装主题(Mojave Gtk Theme)
##1.install Theme
yay -S gtk-engine-murrine gtk-engines sassc
##2.install icons(git 下载太慢可以看gitee有没有别人fork好的仓库)
git clone https://github.com/vinceliuice/McMojave-circle.git && cd McMojave-circle/ && sh ./install.sh
1
2
3
4
2
3
4
# 设置主题
有个叫`优化`的应用程序>外观
1
# 安装软件
# 安装搜狗拼音输入法
yay -S fcitx-im fcitx-configtool fcitx-sogoupinyin
1
##添加输入法配置文件
echo 'export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"'>~/.xprofile
1
2
3
4
2
3
4
# neofetch(查看系统信息)可在命令行中显示图片(但是在下没成功......)
yay -S neofetch
1
# 安装plank(选装类mac
)
##安装
yay -S plank
##开机启动 (可以关掉原有的dock扩展)
sudo ln -s /usr/share/applications/plank.desktop /etc/xdg/autostart/
1
2
3
4
2
3
4
# 安装谷歌浏览器
yay -S google-chrome
1
# 安装扩展(这些貌似是自带的)
yay -S gnome-tweak-tool gnome-shell-extensions chrome-gnome-shell
1
https://www.gnome-look.org/)
# 使用zsh-theme-powerlevel10k主题(默认已安装zsh)
##安装主题(也可以git clone 原项目构建)
yay -S --noconfirm zsh-theme-powerlevel10k-git
echo 'source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
1
2
3
2
3
# 透明的终端
yay -S gnome-terminal-transparency
1
# 安装vscode
yay -S visual-studio-code-bin
1
# 安装微信
yay -S electronic-wechat
1