- .zshrc contain zsh configuration
- .oh-my-zsh contain my custom themes
- .config contain the configuration of packages
- .xinitrc & .Xauthority contain configuration for the Xorg
#Note: below content is the basic-setup.sh file
#@author: Dung T. Vo
#@time: 01/03/2022
# Use as root
su
#Type password in
# install the git and the fakeroot enviroment
pacman -S --needed git base-devel
# Clone the yay repository and install yay packages manager
# git clone https://aur.archlinux.org/yay-bin.git
cd /opt
git clone https://aur.archlinux.org/yay-git.git
chown -R <YOUR_USER_NAME_HERE>:<YOUR_USER_NAME_HERE> ./yay-git
cd yay-git
makepkg -si
# Update (synchronize with pacman ??) the mirror list for yay
yay -Sy
yay -Syy
yay -S $(awk '{print $1}' usePackages.txt)