From a0c2b986e3b11a2060c54268f36f3d5571b57e53 Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Sat, 28 May 2022 14:01:56 +0200 Subject: [PATCH] Cosmetics. --- easy-arch.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index 9f05bf8..c62d5b0 100755 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -53,7 +53,7 @@ kernel_selector () { print "2) Hardened: A security-focused Linux kernel" print "3) Longterm: Long-term support (LTS) Linux kernel" print "4) Zen Kernel: A Linux kernel optimized for desktop usage" - read -r -p "Insert the number of the corresponding kernel: " kernel_choice + read -r -p "Please select the number of the corresponding kernel (e.g. 1): " kernel_choice case $kernel_choice in 1 ) kernel="linux" return 0;; @@ -76,7 +76,7 @@ network_selector () { print "3) wpa_supplicant: Utility with support for WEP and WPA/WPA2 (WiFi-only, DHCPCD will be automatically installed)" print "4) dhcpcd: Basic DHCP client (Ethernet connections or VMs)" print "5) I will do this on my own (only advanced users)" - read -r -p "Insert the number of the corresponding networking utility: " network_choice + read -r -p "Please select the number of the corresponding networking utility (e.g. 1): " network_choice if ! ((1 <= network_choice <= 5)); then incEcho "You did not enter a valid selection." return 1 @@ -228,8 +228,8 @@ print "Welcome to easy-arch, a script made in order to simplify the process of i until keyboard_selector; do : ; done # Choosing the target for the installation. -print "Available disks for the installation:" -PS3="Please select the disk NUMBER (e.g. 1) where Arch Linux is going to be installed: " +print "Available disks for the installation (this is the disk where Arch Linux is going to be installed on):" +PS3="Please select the number of the corresponding disk (e.g. 1): " select ENTRY in $(lsblk -dpnoNAME|grep -P "/dev/sd|nvme|vd"); do DISK="$ENTRY"