From 778a9150cdcd15216e0c1c6d7e1e3843cf455546 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 9 Apr 2026 22:02:52 -0500 Subject: feat: default to no-color output, add --color flag to enable Keeps logs and SSH output clean. Use archangel --color for colored output. --- installer/lib/config.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'installer/lib/config.sh') diff --git a/installer/lib/config.sh b/installer/lib/config.sh index 358a5f4..fefc838 100644 --- a/installer/lib/config.sh +++ b/installer/lib/config.sh @@ -41,6 +41,10 @@ parse_args() { error "--config-file requires a path argument" fi ;; + --color) + enable_color + shift + ;; --help|-h) show_usage exit 0 @@ -60,6 +64,7 @@ Arch Linux installer with ZFS/Btrfs support and snapshot management. Options: --config-file PATH Use config file for unattended installation + --color Enable colored output --help, -h Show this help message Without --config-file, runs in interactive mode. -- cgit v1.2.3