Processing required after Manjaro system installation

For ease of execution, this is written as a script

#! /bin/bash
## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#General configuration
#Replace domestic source
sudo pacman-mirrors -i -c China -m rank
#Adding an Image Source
pacman_conf_file=/etc/pacman.conf
echo [archlinuxcn] >> $pacman_conf_file
echo SigLevel = Optional TrustedOnly >> $pacman_conf_file
echo Server = 'https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch' >> $pacman_conf_file
#update
sudo pacman -Syyu
#Install the ArchLinuxCN-Keyring package to import the GPG key
sudo pacman -S archlinuxcn-keyring
#Install AUR package management tool Yay
sudo pacman -S yay

## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#Common Software Installation
# vim
sudo pacman -S vim
# git
sudo pacman -S git
# chrome
sudo pacman -S google-chrome
# wpsSudo pacman -s WPS - office sudo pacman -s WPS - office - S - useful - cn # sudo installed Chinese pacman -s the vera.ttf WPS - # fonts installed rely on font sudo pacman -S visual-studio-code-bin# typora
sudo pacman -S typora
#Netease Cloud Music
sudo pacman -S netease-cloud-music
#Wechat (experience the wine version closest to Windows wechat)
yay -S wine-wechat
# QQ
yay -S deepin-qq-im
Copy the code

Reference: Manjaro+ KDE simple configuration beautification tutorial