wallpaper: fix print opt

Print actual scheme, not just colours
This commit is contained in:
2 * r + 2 * t
2025-06-15 14:09:18 +10:00
parent fd8ab97d3a
commit 8889378c1d
+7 -1
View File
@@ -102,7 +102,13 @@ def get_colours_for_wall(wall: Path | str, no_smart: bool) -> None:
}
)
return get_colours_for_image(get_thumb(wall, cache), scheme)
return {
"name": scheme.name,
"flavour": scheme.flavour,
"mode": get_smart_mode(wall, cache),
"variant": scheme.variant,
"colours": get_colours_for_image(get_thumb(wall, cache), scheme),
}
def set_wallpaper(wall: Path | str, no_smart: bool) -> None: