比Mac还要丝滑的Manjaro系统配置优化及美化

![图片alt](/media/article/image/2021-09-18/1631950802753.png ‘‘图片title’’)

核心快捷键

  • 在终端复制:Ctrl + Shift + C
  • 在终端粘贴:Ctrl + Shift + V

换源

启动terminal,输入:

pacman-mirrors -i -c China -m rank
# 在弹出的框中选一个最快的源,一个就好,选多了会降低速度。

更新软件源:

sudo pacman -Syy

添加Archlinuxcn软件源

执行下面命令编辑文件:

kate /etc/pacman.conf
# 在文件的末尾添加2行内容:
[archlinuxcn]
Server = https://mirrors.aliyun.com/archlinuxcn/$arch

接着执行以下命令:

sudo pacman -Sy archlinuxcn-keyring haveged
sudo systemctl enable haveged
sudo pacman-key --init
sudo pacman-key --populate manjaro
sudo pacman-key --populate archlinux
sudo pacman-key --populate archlinuxcn

安装字体和配置中文

  • 建议直接将Windows中的字体文件夹全部复制过来进行安装。

安装核心字体

yay -S ttf-ms-fonts
yay -S ttf-consolas-with-yahei
yay -S ttf-wps-fonts
yay -S noto-fonts-cjk

使用微软字体时“系统设置”-“选择字体”,具体设置如下:
![图片alt](/media/article/image/2021-09-18/1631945546907.png ‘‘图片title’’)

配置语言和地域

打开系统设置,搜索本地化设置,将本地化详细设置都改成zh_cn,utf-8。
![图片alt](/media/article/image/2021-09-18/1631945505249.png ‘‘图片title’’)

安装搜狗输入法

yay -S fcitx fcitx-configtool fcitx-qt5 manjaro-asian-input-support-fcitx fcitx-sogoupinyin

隐藏输入法状态栏

vim ~/.config/sogoupinyin/conf/env.ini
# 找到StatusAppearance,将=后面的1改成0
# 然后重启fcitx即可。

优化配置

  • 安装TRM优化固态硬盘,它会帮助清理SSD中的块,从而延长SSD的使用寿命:
sudo systemctl enable fstrim.timer
  • 避免关机时间过长
vim /etc/systemd/system.conf
# 修改一下配置
DefaultTimeoutStartSec=5s
DefaultTimeoutStopSec=5s

软件包使用

更新软件包数据库
pacman -Syy

更新已安装的软件
pacman -Syu

查看不需要的包
pacman -Qtd

安装软件
pacman -S 软件名

搜索软件
pacman -Ss 软件名

搜索安装的所有软件包,grep只显示指定软件名
pacman -Q|grep 软件名

卸载软件包并删除配置文件
pacman -Rsunc 软件名

更新升级
yay

搜索安装软件
yay 软件名

安装qq微信

yay -S com.qq.tim.spark
yay -S com.qq.weixin.spark

修改微信界面大小,执行以下命令:在弹窗中调整分辨率,再重启微信即可。

env WINEPREFIX="$HOME/.deepinwine/Spark-WeChat" deepin-wine5 winecfg

![图片alt](/media/article/image/2021-09-18/1631947361715.png ‘‘图片title’’)

安装wps

yay -S wps-office-cn
yay -S wps-office-mui-zh-cn

安装开发工具包

yay -S visual-studio-code-bin # VSCode
# 安装 jetbrains IDE 直接用命令可以安装,但是只能安装最新版
yay -S goland
yay -S phpstorm
yay -S pycharm

安装指定版本jetbrains IDE,可以通过官网直接下载安装包https://www.jetbrains.com/phpstorm/download/other.html

tar -xzvf phpstorm.tar.gz
sudo mv phpstorm  /usr/local/phpstorm
sudo ln -s /usr/local/phpstorm/bin/phpstorm.sh  /usr/bin/phpstorm

zsh配置

sudo pacman -S zsh
# 安装 oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# 更换默认的 shell
chsh -s /bin/zsh
# 安装 zsh-syntax-highlighting:提供命令高亮
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# 安装autosuggestions:记住你之前使用过的命令
git clone git://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
# 启用所有插件
vi ~/.zshrc
plugins=(git zsh-syntax-highlighting zsh-autosuggestions extract)

# 修改 zsh 样式
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

vi ~/.zshrc
# 设置 ZSH_THEME="powerlevel10k/powerlevel10k"

安装docker

yay -S docker
sudo systemctl start docker
sudo systemctl enable docker

添加当前用户到 docker 用户组

# 添加 docker 用户组
sudo groupadd docker
# 将当前登录的用户添加到 docker 用户组中
sudo gpasswd -a ${USER} docker
# 重启 docker
sudo systemctl restart docker
newgrp docker

安装其他工具

yay -S google-chrome # 谷歌浏览器
yay -S netease-cloud-music # 网易云音乐
yay -S baidunetdisk-bin # 百度网盘
yay -S typora # markdown文档编辑器
yay -S youdao-dict # 有道词典
yay -S base-devel # 打包工具
yay -S font-manager #字体管理
yay -S stacer #磁盘清理
yay -S motrix #下载工具
yay -S pinta # 画图
yay -S karita # krita画图
yay -S vokoscreen # 录屏
yay -S obs-studio # 专业录屏
yay -S audacity # 专业录屏
yay -S qmplay2 # 媒体播放器
yay -S gimp # 图像处理
yay -S flameshot # 火焰截图

主体美化

在系统设置 ->全局主体 选择获取新主体。
![图片alt](/media/article/image/2021-09-18/1631948616543.png ‘‘图片title’’)

个人推荐Layan主体。
![图片alt](/media/article/image/2021-09-18/1631948748616.png ‘‘图片title’’)

组件使用 推荐latte-dock

评论