make recursive wallpaper search follow symlinks

This commit is contained in:
kurrycat
2025-11-11 21:28:32 +01:00
parent 8aa4254d57
commit 0a0f5d4fff
+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 {}
}