From 6427e89ee4f216fb5825f725ec7080238b481cb6 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 13 May 2026 00:45:23 -0700 Subject: [PATCH] rofi: follow wallpaper symlinks --- dotfiles/lib/bin/rofi_wallpaper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/lib/bin/rofi_wallpaper.sh b/dotfiles/lib/bin/rofi_wallpaper.sh index 5d43bf45..75adf729 100755 --- a/dotfiles/lib/bin/rofi_wallpaper.sh +++ b/dotfiles/lib/bin/rofi_wallpaper.sh @@ -23,7 +23,7 @@ if [ ! -d "$wallpaper_dir" ]; then fi mapfile -d '' wallpapers < <( - find "$wallpaper_dir" -type f \ + find -L "$wallpaper_dir" -type f \ \( -iname '*.png' -o -iname '*.jpg' -o -iname '*.jpeg' -o -iname '*.webp' \) \ -print0 | sort -z )