From 08005bc6ae16790c3d1433a73e8a5570e98c8e3e Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Mon, 1 Feb 2021 12:09:02 +0100 Subject: [PATCH] better comments. --- easy-arch.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index a3a371b..3e81829 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -147,16 +147,20 @@ arch-chroot /mnt /bin/bash -e <<"EOF" hwclock --systohc # Generating locales. - locale-gen + echo "Generating locales." + locale-gen &>/dev/null # Generating a new initramfs. - mkinitcpio -P + echo "Creating a new initramfs." + mkinitcpio -P &>/dev/null - # Installing Grub. - grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB + # Installing GRUB. + echo "Installing GRUB on /boot." + grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB &>/dev/null # Creating grub config file. - grub-mkconfig -o /boot/grub/grub.cfg + echo "Creating GRUB config file." + grub-mkconfig -o /boot/grub/grub.cfg &>/dev/null EOF