This repository contains my managed dotfiles. Based on chezmoi.
- OS: Manjaro or Arch
- One line
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply https://github.com/tobihans/dotfiles.git
- Script
dotfiles_location='https://github.com/tobihans/dotfiles.git'
if ! [[ -x "$(command -v chezmoi)" ]]; then
sudo pacman -Syu chezmoi
chezmoi init --verbose --apply $dotfiles_location
fi