From a3a0bbedf936fba9b52e3c215e0b9b6ed80b05ba Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Fri, 25 Apr 2025 23:44:44 -0400 Subject: [PATCH] Move wallpapers into `~/Pictures/wallpapers` --- scripts/lib/swww.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/swww.py b/scripts/lib/swww.py index 9276dcb..7eb5650 100644 --- a/scripts/lib/swww.py +++ b/scripts/lib/swww.py @@ -33,7 +33,7 @@ def run_swww(monitor: str, image: Path, extra_args: list[str] | None = None) -> def get_wallpapers() -> list[Path]: - return list(Path("/usr/share/backgrounds/Wallpapers/").glob("*")) + return list(Path("~/Pictures/wallpapers/").expanduser().glob("*")) def sample_wallpapers(displays: list[str] | None = None) -> "zip[tuple[str, Path]]":