diff options
Diffstat (limited to 'services/Wallpapers.qml')
| -rw-r--r-- | services/Wallpapers.qml | 2 |
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() } |