Move wallpapers into ~/Pictures/wallpapers

This commit is contained in:
Michael Bradley 2025-04-25 23:44:44 -04:00
parent 5ae1abc73a
commit a3a0bbedf9
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -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]]":