From a874f6f8a60f09b8153b4ff161d4f4e881a7326f Mon Sep 17 00:00:00 2001 From: Claudio Benvenuti Date: Fri, 17 Oct 2025 11:27:02 +0200 Subject: [PATCH] Fix: include symlinked backgrounds in theme rotation (#2355) --- 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 94aa4e70..52c1355e 100755 --- a/bin/omarchy-theme-bg-next +++ b/bin/omarchy-theme-bg-next @@ -5,7 +5,7 @@ BACKGROUNDS_DIR="$HOME/.config/omarchy/current/theme/backgrounds/" CURRENT_BACKGROUND_LINK="$HOME/.config/omarchy/current/background" -mapfile -d '' -t BACKGROUNDS < <(find "$BACKGROUNDS_DIR" -type f -print0 | sort -z) +mapfile -d '' -t BACKGROUNDS < <(find -L "$BACKGROUNDS_DIR" -type f -print0 | sort -z) TOTAL=${#BACKGROUNDS[@]} if [[ $TOTAL -eq 0 ]]; then