diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-28 14:22:10 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-28 14:22:10 +0100 |
commit | 2171830b87c847a0579d446fd0a64368b16c0ee8 (patch) | |
tree | 1eb7133f9364b4da91ebc9995792ecf701bce24d | |
parent | Another 2>&1 (diff) | |
download | arch-installer-2171830b87c847a0579d446fd0a64368b16c0ee8.tar.gz arch-installer-2171830b87c847a0579d446fd0a64368b16c0ee8.tar.bz2 arch-installer-2171830b87c847a0579d446fd0a64368b16c0ee8.tar.xz arch-installer-2171830b87c847a0579d446fd0a64368b16c0ee8.tar.zst arch-installer-2171830b87c847a0579d446fd0a64368b16c0ee8.zip |
Confirmation adapts to size too
Diffstat (limited to '')
-rwxr-xr-x | joes-arch-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/joes-arch-install.sh b/joes-arch-install.sh index 2d059a9..6e47c52 100755 --- a/joes-arch-install.sh +++ b/joes-arch-install.sh @@ -285,7 +285,7 @@ jo_pacstrap() { diaglen=$(echo "15 + $paclen" | bc) dialog --title "$1" --infobox "Installing $1" 3 "$diaglen" if pacstrap /mnt/arch "$1" > /dev/null 2>&1; then - dialog --title "$1" --infobox "$1 installed" 3 50 + dialog --title "$1" --infobox "$1 installed" 3 "$diaglen" sleep 2 fi } |