Use consistent terms

This commit is contained in:
David Heinemeier Hansson
2026-05-11 15:29:31 -04:00
committed by Ryan Hughes
parent 000b7c79af
commit b48f67058b
8 changed files with 13 additions and 12 deletions
@@ -44,9 +44,9 @@ function GetEntries()
-- Track added files to avoid duplicates
local seen = {}
for _, wallpaper_dir in ipairs(dirs) do
for _, background_dir in ipairs(dirs) do
local handle = io.popen(
"find -L " .. ShellEscape(wallpaper_dir)
"find -L " .. ShellEscape(background_dir)
.. " -maxdepth 1 -type f \\( -name '*.jpg' -o -name '*.jpeg' -o -name '*.png' -o -name '*.gif' -o -name '*.bmp' -o -name '*.webp' \\) 2>/dev/null | sort"
)
if handle then