From 5b69af693f6e5657e574f5981753900cb16421ed Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 1 Aug 2026 18:11:45 -0700 Subject: [PATCH] Fix background cycling for glob characters Co-authored-by: DataDave-Dev <153755137+DataDave-Dev@users.noreply.github.com> --- bin/omarchy-theme-bg-next | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-theme-bg-next b/bin/omarchy-theme-bg-next index 7e9db268..dfb3d3f0 100755 --- a/bin/omarchy-theme-bg-next +++ b/bin/omarchy-theme-bg-next @@ -29,7 +29,7 @@ else # Find current background index INDEX=-1 for i in "${!BACKGROUNDS[@]}"; do - if [[ ${BACKGROUNDS[$i]} == $CURRENT_BACKGROUND ]]; then + if [[ ${BACKGROUNDS[$i]} == "$CURRENT_BACKGROUND" ]]; then INDEX=$i break fi