Fix background cycling for glob characters

Co-authored-by: DataDave-Dev <153755137+DataDave-Dev@users.noreply.github.com>
This commit is contained in:
David Heinemeier Hansson
2026-08-01 18:13:45 -07:00
co-authored by DataDave-Dev
parent 87940c3cf4
commit 5b69af693f
+1 -1
View File
@@ -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