mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-27 09:58:28 +01:00
change size of rsync, build, and install dialog boxes so they fit better in a standard 80x24 or 80x25 terminal; this is something I have been meaning to fix for a long time but kept forgetting, so thanks to Erik Hanson for the reminder.
This commit is contained in:
parent
d615412662
commit
1cb7a655d1
1 changed files with 3 additions and 3 deletions
|
@ -529,7 +529,7 @@ as the root user in order to build packages." 8 30
|
|||
( build_package $APP >> $SBOPKGOUTPUT & ) 2>>$SBOPKGOUTPUT
|
||||
while [ -f $TMP/sbopkg_build.lck ]; do
|
||||
dialog --backtitle "Building the $APP package." \
|
||||
--tailbox $SBOPKGOUTPUT 20 70
|
||||
--tailbox $SBOPKGOUTPUT 18 70
|
||||
done
|
||||
fi
|
||||
if [ -e $TMP/sbopkg_failcheck ]; then
|
||||
|
@ -552,7 +552,7 @@ as the root user in order to build packages." 8 30
|
|||
( install_package $PKGOUTPUT/$IPACKAGE >> $SBOPKGINSTALLOUTPUT & ) 2>>$SBOPKGINSTALLOUTPUT
|
||||
while [ -f $TMP/sbopkg_install.lck ]; do
|
||||
dialog --backtitle "Installing the $APP package." \
|
||||
--tailbox $SBOPKGINSTALLOUTPUT 20 70
|
||||
--tailbox $SBOPKGINSTALLOUTPUT 18 70
|
||||
rm -rf $TMP/sbopkg_install.lck
|
||||
done
|
||||
fi
|
||||
|
@ -730,7 +730,7 @@ if [ "$DIAG" = 1 ]; then
|
|||
( rsync_command >> $SBOPKGOUTPUT & ) 2>>$SBOPKGOUTPUT
|
||||
while [ -f $TMP/sbopkg_rsync.lck ]; do
|
||||
dialog --backtitle "Rsyncing with SlackBuilds.org" \
|
||||
--tailbox $SBOPKGOUTPUT 20 70
|
||||
--tailbox $SBOPKGOUTPUT 18 70
|
||||
done
|
||||
rm -f $SBOPKGOUTPUT
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue