This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Arch Linux Automated Installation Script | |
| # This script automates the installation of Arch Linux with: | |
| # - Btrfs filesystem with subvolumes for snapshots | |
| # - GRUB bootloader with UEFI support | |
| # - NetworkManager for network management | |
| # - Base development tools and yay AUR helper | |
| # Exit immediately if any command fails | |
| set -e |