diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-29 23:18:49 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-29 23:18:49 +0100 |
commit | 4c2016eb7d29365ee8f10c9e49eeb69851bca534 (patch) | |
tree | d5fe1b5a911e6c17ecde5c9b67449d79d9e3c7ac | |
parent | Progress bars added when pacstraping (diff) | |
download | arch-installer-4c2016eb7d29365ee8f10c9e49eeb69851bca534.tar.gz arch-installer-4c2016eb7d29365ee8f10c9e49eeb69851bca534.tar.bz2 arch-installer-4c2016eb7d29365ee8f10c9e49eeb69851bca534.tar.xz arch-installer-4c2016eb7d29365ee8f10c9e49eeb69851bca534.tar.zst arch-installer-4c2016eb7d29365ee8f10c9e49eeb69851bca534.zip |
Bigger window for the progress bar
-rwxr-xr-x | arch-installer.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch-installer.sh b/arch-installer.sh index 58fd53c..eb9137a 100755 --- a/arch-installer.sh +++ b/arch-installer.sh @@ -391,7 +391,7 @@ jo_make_filesystem() { #-------------------------------------------- PACSTRAP --------------------------------------------# #==================================================================================================# jo_pacstrap() { - echo "$2" | dialog --title "IV. INSTALLING LINUX" --gauge "Installing $1" 6 70 0 + echo "$2" | dialog --title "IV. INSTALLING LINUX" --gauge "Installing $1" 7 70 0 pacstrap /mnt/arch "$1" > /dev/null 2>&1 } @@ -513,7 +513,7 @@ if [ "$isusr" = true ]; then fi echo 100 | dialog --title "IV. INSTALLING LINUX"\ --gauge "Base packages installed"\ - 6 70 0 + 7 70 0 sleep 4 #==================================================================================================# #--------------------------------------- UTILS DOWNLOAD -------------------------------------------# @@ -530,7 +530,7 @@ if [ "$utils" = true ]; then jo_pacstrap man 88 echo 100 | dialog --title "IV. INSTALLING LINUX"\ --gauge "Util packages installed"\ - 6 70 0 + 7 70 0 sleep 4 fi #==================================================================================================# @@ -550,7 +550,7 @@ if [ "$extras" = true ]; then fi echo 100 | dialog --title "IV. INSTALLING LINUX"\ --gauge "Extra packages installed"\ - 6 70 0 + 7 70 0 sleep 4 fi #==================================================================================================# |