From af4eb723850c19df35446ea9c4474d21583bb3fb Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Mon, 18 Aug 2025 17:50:18 -0400 Subject: [PATCH] Default to GUI install with opt-out flag --- scripts/install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 5013622..27b3edb 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -17,7 +17,7 @@ VENV_DIR="$INSTALL_DIR/venv" LAUNCHER_DIR="$HOME/.local/bin" LAUNCHER_PATH="$LAUNCHER_DIR/seedpass" BRANCH="main" # Default branch -INSTALL_GUI=false +INSTALL_GUI=true # --- Helper Functions --- print_info() { echo -e "\033[1;34m[INFO]\033[0m" "$1"; } @@ -59,9 +59,9 @@ install_dependencies() { fi } usage() { - echo "Usage: $0 [-b | --branch ] [--with-gui] [-h | --help]" + echo "Usage: $0 [-b | --branch ] [--no-gui] [-h | --help]" echo " -b, --branch Specify the git branch to install (default: main)" - echo " --with-gui Include graphical interface dependencies" + echo " --no-gui Skip graphical interface dependencies (default: include GUI)" echo " -h, --help Display this help message" exit 0 } @@ -82,8 +82,8 @@ main() { -h|--help) usage ;; - --with-gui) - INSTALL_GUI=true + --no-gui) + INSTALL_GUI=false shift ;; *)