summaryrefslogtreecommitdiff
path: root/services/Wallpapers.qml
diff options
context:
space:
mode:
authorLaurens Duin <85798751+Laurens256@users.noreply.github.com>2025-08-12 03:47:05 +0200
committerGitHub <noreply@github.com>2025-08-12 11:47:05 +1000
commit38506e60293df56d252a99f561cca3b40e25bd21 (patch)
tree13cfb87e97bb397fff02da9179007f953ee31eaa /services/Wallpapers.qml
parentinternal: clean up old lock files (diff)
downloadcaelestia-shell-38506e60293df56d252a99f561cca3b40e25bd21.tar.gz
caelestia-shell-38506e60293df56d252a99f561cca3b40e25bd21.tar.bz2
caelestia-shell-38506e60293df56d252a99f561cca3b40e25bd21.zip
wallpapers: allow symlinked wallpaper directory (#399)
Diffstat (limited to 'services/Wallpapers.qml')
-rw-r--r--services/Wallpapers.qml2
1 files changed, 1 insertions, 1 deletions
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()
}