From bfba908ef40e480c841db3c337e5e220352adb12 Mon Sep 17 00:00:00 2001 From: Sir Blob Date: Mon, 21 Sep 2026 00:49:35 +0000 Subject: [PATCH] List wallpapers through the symlinked wallpapers folder --- shell/plugins/panels/displays/WallpaperGrid.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/plugins/panels/displays/WallpaperGrid.qml b/shell/plugins/panels/displays/WallpaperGrid.qml index b78979e..0c3dcb1 100644 --- a/shell/plugins/panels/displays/WallpaperGrid.qml +++ b/shell/plugins/panels/displays/WallpaperGrid.qml @@ -20,7 +20,7 @@ Item { Process { id: listProc command: ["bash", "-c", - 'find "$1" -maxdepth 1 -type f \\( -iname "*.jpg" -o -iname "*.jpeg" ' + + 'find -L "$1" -maxdepth 1 -type f \\( -iname "*.jpg" -o -iname "*.jpeg" ' + '-o -iname "*.png" -o -iname "*.webp" -o -iname "*.gif" \\) | sort', "--", root.directory] stdout: StdioCollector {