From 8889378c1d2723b1cb2e3caad7a77373fb1625d7 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 15 Jun 2025 14:09:18 +1000 Subject: wallpaper: fix print opt Print actual scheme, not just colours --- src/caelestia/utils/wallpaper.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/caelestia/utils/wallpaper.py') diff --git a/src/caelestia/utils/wallpaper.py b/src/caelestia/utils/wallpaper.py index 0a666be..3db9dab 100644 --- a/src/caelestia/utils/wallpaper.py +++ b/src/caelestia/utils/wallpaper.py @@ -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: -- cgit v1.2.3-freya