From 44599c5501f6ff3270dcb91935ce026f9e731038 Mon Sep 17 00:00:00 2001 From: Olli Salonen Date: Sat, 22 Oct 2016 20:04:08 +0300 Subject: [PATCH 1/2] installer: no more pretty pink --- packages/tools/installer/config/installer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tools/installer/config/installer.conf b/packages/tools/installer/config/installer.conf index c503445dcb..64779362aa 100644 --- a/packages/tools/installer/config/installer.conf +++ b/packages/tools/installer/config/installer.conf @@ -39,4 +39,4 @@ # color scheme to use for Whiptail/Newt # see http://askubuntu.com/questions/776831/whiptail-change-background-color-dynamically-from-magenta - WHIPTAIL_COLORS="root=,magenta;entry=,magenta;label=magenta,;actlistbox=,magenta;roottext=white,magenta" + WHIPTAIL_COLORS="" From 3d96cd23c2b111b423f79cf3bb9136eaf6079c5c Mon Sep 17 00:00:00 2001 From: Olli Salonen Date: Sat, 22 Oct 2016 20:04:29 +0300 Subject: [PATCH 2/2] installer: cosmetics Change some wording, add the "backtitle" to the installation phase. --- packages/tools/installer/scripts/installer | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/tools/installer/scripts/installer b/packages/tools/installer/scripts/installer index 60257abb76..abca27aae8 100755 --- a/packages/tools/installer/scripts/installer +++ b/packages/tools/installer/scripts/installer @@ -305,7 +305,7 @@ do_install_quick() { msg_progress_install "100" "Remove $TMPDIR/part2" rmdir $TMPDIR/part2 >> $LOGFILE 2>&1 fi - } | whiptail --gauge "Please wait while your system is being setup ..." 6 73 0 + } | whiptail --backtitle "$BACKTITLE" --gauge "Please wait while your system is being setup ..." 6 73 0 # install complete MSG_TITLE="@DISTRONAME@ Install Complete" @@ -409,7 +409,7 @@ out during the installation. \ whiptail --backtitle "$BACKTITLE" --cancel-button "$MSG_CANCEL" \ --title "$MSG_TITLE" --menu "$MSG_MENU" 18 73 3 \ 1 "Install @DISTRONAME@" \ - 2 "Show the log file" \ + 2 "Installation log" \ 3 "Reboot" 2> $TMPDIR/mainmenu case $? in @@ -431,7 +431,7 @@ out during the installation. \ } logfile_show() { - whiptail --textbox "$LOGFILE" 20 73 --scrolltext + whiptail --textbox "$LOGFILE" 20 73 --scrolltext --backtitle "$BACKTITLE" clear menu_main }