From 38506e60293df56d252a99f561cca3b40e25bd21 Mon Sep 17 00:00:00 2001 From: Laurens Duin <85798751+Laurens256@users.noreply.github.com> Date: Tue, 12 Aug 2025 03:47:05 +0200 Subject: wallpapers: allow symlinked wallpaper directory (#399) --- services/Wallpapers.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/Wallpapers.qml b/services/Wallpapers.qml index 2044c87..5ebcbab 100644 --- a/services/Wallpapers.qml +++ b/services/Wallpapers.qml @@ -86,7 +86,7 @@ Searcher { id: getWallsProc running: true - command: ["find", Paths.expandTilde(Config.paths.wallpaperDir), "-type", "d", "-path", '*/.*', "-prune", "-o", "-not", "-name", '.*', "-type", "f", "-print"] + command: ["find", "-L", Paths.expandTilde(Config.paths.wallpaperDir), "-type", "d", "-path", '*/.*', "-prune", "-o", "-not", "-name", '.*', "-type", "f", "-print"] stdout: StdioCollector { onStreamFinished: wallpapers.model = text.trim().split("\n").filter(w => Images.isValidImageByName(w)).sort() } -- cgit v1.2.3-freya