This is a compilation of different dotfiles (unix configuration files) that I use on my Linux machines.
In the future I will try to automate with a script and list all required dependencies.
-
Boot from live Arch ISO in UEFI mode
-
Update pacman package databases
pacman -Syy
-
Install git
pacman -S git
-
Clone this repository
git clone https://github.com/scottzach1/dotfiles.git && cd dotfiles
-
Update configuration in 0_live_install.sh
# Configuration variables TARGET_DISK="XXX" # /dev/nvme0n1 SWAP_SIZE="16G" HOSTNAME="desktop" USERNAME="zaci" TIMEZONE="Pacific/Auckland" LOCALE="en_NZ.utf8" KEYMAP="us"
-
Run live install script
bash 0_live_install.sh
-
Reboot into Arch Linux
-
Run post install script
bash 1_post_install.sh
Zac Scott