From 2f741107a8cc4bcbfb9556661c9d9396de3ccafc Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 20 Sep 2023 20:08:59 +0200 Subject: [PATCH] change to Success --- usr/bin/archboot-network.sh | 2 +- usr/bin/archboot-pacsetup.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/bin/archboot-network.sh b/usr/bin/archboot-network.sh index 256d155fa..4542f3c8a 100755 --- a/usr/bin/archboot-network.sh +++ b/usr/bin/archboot-network.sh @@ -101,7 +101,7 @@ _wireless() { sleep 3 _printk on if [[ -n "${_WLAN_AUTH}" ]]; then - _dialog --title " Network Configuration " --no-mouse --infobox "Authentification to '${_WLAN_SSID}' was successful." 3 70 + _dialog --title " Success " --no-mouse --infobox "Authentification to '${_WLAN_SSID}' was successful." 3 70 sleep 2 return 0 else diff --git a/usr/bin/archboot-pacsetup.sh b/usr/bin/archboot-pacsetup.sh index 6ebcb78dd..c9586cc40 100755 --- a/usr/bin/archboot-pacsetup.sh +++ b/usr/bin/archboot-pacsetup.sh @@ -181,13 +181,13 @@ if [[ ! -e "/var/cache/pacman/pkg/archboot.db" ]] &&\ if [[ -n "${_UPDATE_ENVIRONMENT}" ]]; then _run_update_environment fi - _dialog --title " Pacman Configuration " --no-mouse --infobox "Pacman configuration completed successfully." 3 60 + _dialog --title " Success " --no-mouse --infobox "Pacman configuration completed successfully." 3 60 sleep 2 rm /.new_kernel fi _cleanup fi -_dialog --title " Pacman Configuration " --no-mouse --infobox "Pacman configuration completed successfully." 3 60 +_dialog --title " Success " --no-mouse --infobox "Pacman configuration completed successfully." 3 60 sleep 2 _cleanup # vim: set ft=sh ts=4 sw=4 et: