From 651c32d93180d66836ace97aa18b51e1fbb83bd1 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 17 Jan 2026 23:35:12 -0600 Subject: Default WiFi configuration to yes --- custom/install-archzfs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/install-archzfs b/custom/install-archzfs index 733660b..79ee0ff 100755 --- a/custom/install-archzfs +++ b/custom/install-archzfs @@ -271,10 +271,10 @@ get_raid_level() { get_wifi() { step "WiFi Configuration (Optional)" echo "" - prompt "Do you want to configure WiFi? [y/N]:" + prompt "Do you want to configure WiFi? [Y/n]:" read -p "> " configure_wifi - if [[ "$configure_wifi" =~ ^[Yy]$ ]]; then + if [[ ! "$configure_wifi" =~ ^[Nn]$ ]]; then # Ensure NetworkManager is running systemctl start NetworkManager 2>/dev/null || true sleep 2 -- cgit v1.2.3