From 58ecda3b80d39be8648ae66a6248f1e89dfc112a Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 31 Oct 2025 14:34:08 +0100 Subject: [PATCH] Make Yes the default --- bin/omarchy-update-confirm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-update-confirm b/bin/omarchy-update-confirm index d4ff436d..bc0c9f54 100755 --- a/bin/omarchy-update-confirm +++ b/bin/omarchy-update-confirm @@ -8,7 +8,7 @@ gum style --border normal --border-foreground 6 --padding "1 2" \ "• You cannot stop the update once you start!" \ "• Make sure you're connected to power or have a full battery" -if ! gum confirm --default=false "Continue with update?"; then +if ! gum confirm "Continue with update?"; then echo "Update cancelled" exit 0 fi