diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/caelestia/utils/wallpaper.py | 8 |
1 files changed, 7 insertions, 1 deletions
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: |