From d4c835afb5ef8b5257d57c919363108b908b62a5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 26 Jul 2026 19:10:06 -0700 Subject: [PATCH] Fix the default center layout assertion The center layout was reordered when the indicators moved next to the clock, but the assertion kept the old order, so this has been failing on quattro since. Co-Authored-By: Claude Opus 5 (1M context) --- test/shell.d/config-test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/shell.d/config-test.sh b/test/shell.d/config-test.sh index 905df673..96d68004 100755 --- a/test/shell.d/config-test.sh +++ b/test/shell.d/config-test.sh @@ -19,10 +19,10 @@ pass "default shell.json has versioned bar layout" jq -e ' def ids: map(.id // .); .bar.layout.center | ids == [ + "omarchy.indicators", "omarchy.clock", "omarchy.weather", - "omarchy.system-update", - "omarchy.indicators" + "omarchy.system-update" ] ' "$ROOT/config/omarchy/shell.json" >/dev/null pass "default center layout keeps update next to weather"