1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-07-26 08:28:05 +02:00

Merge pull request #1862 from RaspAP/maint/installer-color

Update install loader with ANSI_AQUA theme color
This commit is contained in:
Bill Zimmerman 2025-05-29 07:50:16 +02:00 committed by GitHub
commit e65a29f911
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,7 @@ OPTIONS:
-a, --adblock <flag> Used with -y, --yes, sets Adblock install option (0=no install)
-w, --wireguard <flag> Used with -y, --yes, sets WireGuard install option (0=no install)
-e, --provider <value> Used with -y, --yes, sets the VPN provider install option
-g, --tcp-bbr <value> Used with -y, --yes, sets the TCP BBR congestion control algorithm option
-g, --tcp-bbr <value> Used with -y, --yes, sets the TCP BBR congestion control algorithm option
-r, --repo, --repository <name> Overrides the default GitHub repo (RaspAP/raspap-webgui)
-b, --branch <name> Overrides the default git branch (latest release)
-t, --token <accesstoken> Specify a GitHub token to access a private repository
@ -137,7 +137,7 @@ function _parse_params() {
pv_option="$2"
shift
;;
-g|--tcp-bbr)
-g|--tcp-bbr)
bbr_option="$2"
shift
;;
@ -205,9 +205,9 @@ function _parse_params() {
function _setup_colors() {
ANSI_RED="\033[0;31m"
ANSI_GREEN="\033[0;32m"
ANSI_AQUA="\033[38;5;44m"
ANSI_YELLOW="\033[0;33m"
ANSI_RASPBERRY="\033[0;35m"
ANSI_LT_AQUA="\033[38;5;30m"
ANSI_ERROR="\033[1;37;41m"
ANSI_RESET="\033[m"
}
@ -229,7 +229,7 @@ function _version() {
# Outputs a welcome message
function _display_welcome() {
echo -e "${ANSI_RASPBERRY}\n"
echo -e "${ANSI_AQUA}\n"
echo -e " 888888ba .d888888 888888ba"
echo -e " 88 8b d8 88 88 8b"
echo -e "a88aaaa8P' .d8888b. .d8888b. 88d888b. 88aaaaa88a a88aaaa8P"
@ -238,7 +238,7 @@ function _display_welcome() {
echo -e " dP dP 88888P8 88888P 88Y888P 88 88 dP"
echo -e " 88"
echo -e " dP version ${RASPAP_RELEASE}"
echo -e "${ANSI_GREEN}"
echo -e "${ANSI_LT_AQUA}"
echo -e "The Quick Installer will guide you through a few easy steps${ANSI_RESET}\n\n"
}
@ -271,7 +271,7 @@ function _get_release() {
# Outputs a RaspAP Install log line
function _install_log() {
echo -e "${ANSI_GREEN}RaspAP ${component}: $1${ANSI_RESET}"
echo -e "${ANSI_LT_AQUA}RaspAP ${component}: $1${ANSI_RESET}"
}
# Outputs a RaspAP divider
@ -283,7 +283,7 @@ function _install_divider() {
function _install_status() {
case $1 in
0)
echo -e "[$ANSI_GREEN \U2713 ok $ANSI_RESET] $2"
echo -e "[$ANSI_LT_AQUA \U2713 ok $ANSI_RESET] $2"
;;
1)
echo -e "[$ANSI_RED \U2718 error $ANSI_RESET] $ANSI_ERROR $2 $ANSI_RESET"
@ -292,7 +292,7 @@ function _install_status() {
echo -e "[$ANSI_YELLOW \U26A0 warning $ANSI_RESET] $2"
;;
3)
echo -e "[$ANSI_RASPBERRY ! important $ANSI_RESET] $2"
echo -e "[$ANSI_AQUA ! important $ANSI_RESET] $2"
esac
}