artix

desc
git clone https://git.awy.one/artix.git
Log | Files | Refs | README | LICENSE

commit b15c178c0c3cbe7be337a5401554da43cc63ac30
parent b400d12b1489c851f01609df80a223888cfcf713
Author: awy <awy@awy.one>
Date:   Wed, 30 Oct 2024 01:16:59 +0300

upload

Diffstat:
Minstall.sh | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/install.sh b/install.sh @@ -58,9 +58,9 @@ getUserData(){ echo read -rp "Enter hostname: " hostname printf ${red}"Choose Linux Kernel:${normal}\n1. Zen kernel\n2. Custom kernel${normal}\nYour choose: " - read -rp _kernelflag - read -rp "Enter disk label (e.g. sda, nvme0n1p <- p is mandatory in nvme case):" disk_drive - read -rp "Enter comma-separated partition numbers (e.g., 5,6 for 5 boot 6 root):" partitions + read -r _kernelflag + read -rp "Enter disk label (e.g. sda, nvme0n1p <- p is mandatory in nvme case): " disk_drive + read -rp "Enter comma-separated partition numbers (e.g., 5,6 for 5 boot 6 root): " partitions IFS=',' read -r -a partition_array <<< "$partitions" root_drive="$disk_drive${partition_array[1]}" boot_drive="$disk_drive${partition_array[0]}"