Update dialog boxes

This commit is contained in:
Santiago Lo Coco 2022-01-02 00:51:54 -03:00
parent 6242660180
commit eb251697d4
1 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ getThePackages() {
}
installImportantPackages() {
calcHeightAndRun "whiptail --msgbox \"We will start by installing some important packages in the background. Please press OK and wait.\" HEIGHT 60 3>&1 1>&2 2>&3"
calcHeightAndRun "whiptail --msgbox \"We will continue with the installation of some important packages in the background. Please press OK and wait.\" HEIGHT 60 3>&1 1>&2 2>&3"
getThePackages "Y" "installImportantPackages"
runInChroot "systemctl enable NetworkManager; systemctl enable fstrim.timer" 2>&1 | debug
}
@ -175,7 +175,7 @@ generateFstab() {
}
setTimeZone() {
whiptail --msgbox "Now we will set the timezone." 0 0
whiptail --msgbox "Now, we will set the timezone." 0 0
setDelimiters ""
formatOptions $(ls -l /usr/share/zoneinfo/ | grep '^d' | awk '{printf $9" \n"}' | awk '!/posix/ && !/right/')
region=$(whiptail --title "Region" --menu "" 0 0 0 "${options[@]}" 3>&1 1>&2 2>&3)