Automated setup script for a fresh Arch Linux installation.
Recommended: Review before running
# Download the script
curl -fsSL dotfiles.sergioasenjo.cl/bootstrap.sh -o bootstrap.sh
# Review the script
less bootstrap.sh
# Make it executable
chmod +x bootstrap.sh
# Run the installer
./bootstrap.shAlternative: Direct install (use at your own risk)
curl -fsSL dotfiles.sergioasenjo.cl/bootstrap.sh | bashOnce the bootstrap completes, apply your dotfiles with GNU Stow:
# Clone this repository
git clone https://github.com/sergio-asenjo/dotfiles.git ~/dotfiles
cd ~/dotfiles
# Apply configurations (example)
stow hyprland
stow waybar
stow wezterm
stow wofi
# Or apply all at once
stow */If you prefer to run the script locally:
git clone https://github.com/sergio-asenjo/dotfiles.git ~/dotfiles
cd ~/dotfiles/bootstrap
./bootstrap.sh