Merge pull request #726 from kurrycat2004/wallpaper-symlink

WallpaperService: make recursive wallpaper search follow symlinks
This commit is contained in:
Lemmy
2025-11-11 19:19:05 -05:00
committed by GitHub
+1 -1
View File
@@ -422,7 +422,7 @@ Singleton {
import Quickshell.Io
Process {
id: process
command: ["find", "` + directory + `", "-type", "f", "(", "-iname", "*.jpg", "-o", "-iname", "*.jpeg", "-o", "-iname", "*.png", "-o", "-iname", "*.gif", "-o", "-iname", "*.pnm", "-o", "-iname", "*.bmp", ")"]
command: ["find", "-L", "` + directory + `", "-type", "f", "(", "-iname", "*.jpg", "-o", "-iname", "*.jpeg", "-o", "-iname", "*.png", "-o", "-iname", "*.gif", "-o", "-iname", "*.pnm", "-o", "-iname", "*.bmp", ")"]
stdout: StdioCollector {}
stderr: StdioCollector {}
}