diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 27f576fb..6f667147 100755 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -44,7 +44,7 @@ OPTIONS: -a, --adblock Used with -y, --yes, sets Adblock install option (0=no install) -w, --wireguard Used with -y, --yes, sets WireGuard install option (0=no install) -e, --provider Used with -y, --yes, sets the VPN provider install option --g, --tcp-bbr Used with -y, --yes, sets the TCP BBR congestion control algorithm option +-g, --tcp-bbr Used with -y, --yes, sets the TCP BBR congestion control algorithm option -r, --repo, --repository Overrides the default GitHub repo (RaspAP/raspap-webgui) -b, --branch Overrides the default git branch (latest release) -t, --token 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 }