From 9f13bfc157cbaa317cf4a37d21e3417f06fcd6c9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 10 Aug 2026 07:46:06 -0700 Subject: [PATCH] Center the timezone picker in first-boot setup The timezone prompt falls back to `gum filter` when tzupdate can't guess a zone, which is the common case on a first boot with no network yet. That was the one widget in the form without a GUM_*_PADDING export, so it drew flush left while every other step sat centered under the logo. Co-Authored-By: Claude Opus 5 (1M context) --- bin/omarchy-provision-owner | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/omarchy-provision-owner b/bin/omarchy-provision-owner index c3b6119c..cc23b9ae 100755 --- a/bin/omarchy-provision-owner +++ b/bin/omarchy-provision-owner @@ -114,6 +114,7 @@ measure_terminal() { local padding="0 0 0 $PADDING_LEFT" export GUM_CHOOSE_PADDING="$padding" + export GUM_FILTER_PADDING="$padding" export GUM_INPUT_PADDING="$padding" export GUM_SPIN_PADDING="$padding" export GUM_TABLE_PADDING="$padding"