This commit is contained in:
Santiago Lo Coco 2021-12-27 23:12:53 -03:00
parent daf888829f
commit 90a8e72e58
1 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ getThePackages() {
} }
installImportantPackages() { installImportantPackages() {
calcHeightAndRun "whiptail --msgbox \"We will start by installing some important packages in the background. Please press OK and wait.\" 8 HEIGHT" calcHeightAndRun "whiptail --msgbox \"We will start by installing some important packages in the background. Please press OK and wait.\" 8 HEIGHT 3>&1 1>&2 2>&3"
getThePackages "Y" "installImportantPackages" getThePackages "Y" "installImportantPackages"
runInChroot "systemctl enable NetworkManager; systemctl enable fstrim.timer" 2> /dev/null runInChroot "systemctl enable NetworkManager; systemctl enable fstrim.timer" 2> /dev/null
} }
@ -274,7 +274,7 @@ EOF
} }
installNotImportantPackages() { installNotImportantPackages() {
calcHeightAndRun "whiptail --msgbox \"Now, we will install a few more packages (in the background). Press OK and wait (it may take some time).\" 8 HEIGHT" calcHeightAndRun "whiptail --msgbox \"Now, we will install a few more packages (in the background). Press OK and wait (it may take some time).\" 8 HEIGHT 3>&1 1>&2 2>&3"
checkForParu checkForParu
getThePackages "N" "installNotImportantPackages" getThePackages "N" "installNotImportantPackages"
} }