dotfiles

GitHub

dotfiles

home

# install chezmoi & init
which chezmoi || yay -Sy chezmoi
chezmoi init mcbeeringi

# apply
chezmoi apply

root

chezmoi cd
sudo cp -r root/* / 

part.sh

Create, format and mount partitions from empty space.

source

root partition will be formatted with btrfs.

For usage, refer to install.sh section.

args

install.sh

Install ArchLinux and basic packages.

source

boot from the install media

loadkeys jp106
iwctl

# part.sh : create partition, format mount
BLK=/dev/nvme0n1 bash <(curl -s https://dot.6ca.me/part.sh)
# set SWAP to any value (including enpty) to make swap
# BLK=/dev/nvme0n1 SWAP=1 bash <(curl -s https://dot.6ca.me/part.sh)

# or do manually
#
# lsblk
# cfdisk
#
# mkfs.fat -F32 /dev/~
# mkfs.ext4 /dev/~
# mkswap /dev/~
#
# swapon /dev~
# mount /dev/~ /mnt
# mount --mkdir /dev/~ /mnt/boot


# install.sh : install archlinux
ROOT_PASS=password USER_NAME=user bash <(curl -s https://dot.6ca.me/install.sh)

args

Run setup.sh or kde.sh after reboot. Can be called from history.

setup.sh

Setup Hyprland & sway with recommended packages.

source

bash <(curl -s https://dot.6ca.me/setup.sh)

kde.sh

Setup KDE Plasma DE with neccesaries.

source

bash <(curl -s https://dot.6ca.me/kde.sh)