- If on wifi and it does not start
nmcli device wifi list
nmcli device wifi connect SSID --ask
- For Intel laptops. If the onboard sound card is not working
sudo pacman -S sof-firmware sof-tools
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Install yay package manager
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
- Install plymouth boot splash screen for encrypet root
- Add plymouth to the hooks for initcpio
HOOKS=(base udev autodetect microcode modconf kms keyboard keymap consolefont block plymouth encrypt filesystems fsck)
yay -S plymouth-theme-archlinux plymouth-theme-arch-logo plymouth-theme-catppuccin-mocha-git
# show themes
plymouth-set-default-theme -l
sudo vim /etc/plymouth/plymouthd.conf
[Daemon]
Theme=catppuccin-mocha
DeviceScale=an-integer-scaling-factor # for HiDPI
- After setting the theme rebuild the initramfs
- Add splash to the grub bootloader
sudo vim /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet splash cryptdevice=UUID=<UUID>:cryptroot root=/dev/mapper/cryptroot"
sudo grub-mkconfig --output /boot/grub/grub.cfg