From bf72d80ac69861824b7a5439b6cc8b9122b16003 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 23 Aug 2025 18:23:44 +0200 Subject: [PATCH] The ISO configurator will now take care of identification And removing it here helps deal with the fact that gum doesn't play nice with the new logging feature. --- install.sh | 1 - install/config/identification.sh | 9 --------- 2 files changed, 10 deletions(-) delete mode 100644 install/config/identification.sh diff --git a/install.sh b/install.sh index ed75ee82..4b92fb92 100755 --- a/install.sh +++ b/install.sh @@ -64,7 +64,6 @@ source $OMARCHY_INSTALL/preflight/migrations.sh # Configuration show_logo beams 240 show_subtext "Let's install Omarchy!" -source $OMARCHY_INSTALL/config/identification.sh source $OMARCHY_INSTALL/config/config.sh source $OMARCHY_INSTALL/config/branding.sh source $OMARCHY_INSTALL/config/detect-keyboard-layout.sh diff --git a/install/config/identification.sh b/install/config/identification.sh deleted file mode 100644 index da63ebbe..00000000 --- a/install/config/identification.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -[ -z "$OMARCHY_USER_NAME" ] && - export OMARCHY_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ") - -[ -z "$OMARCHY_USER_EMAIL" ] && - export OMARCHY_USER_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ") - -echo # Ensure we end with a positive exit