diff options
| author | Dylan Araps <dylanaraps@users.noreply.github.com> | 2017-07-10 00:09:11 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-10 00:09:11 +1000 |
| commit | a6f99791ce79f0eed40396e8f3462413ce66554c (patch) | |
| tree | 77bd9cc12991137d6449c7a3cc1e492363c99ffb /pywal/export.py | |
| parent | dd95c26b40fc08abe9b9a6b27cbab77ffb00ad28 (diff) | |
| parent | c38c89ece1d41942fa322c555993e50e5c515e41 (diff) | |
Merge pull request #42 from dylanaraps/wallpaper
export: Add wallpaper to export files.
Diffstat (limited to 'pywal/export.py')
| -rw-r--r-- | pywal/export.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pywal/export.py b/pywal/export.py index 5e7f2e6..9eea198 100644 --- a/pywal/export.py +++ b/pywal/export.py @@ -35,7 +35,9 @@ def export_all_templates(colors, template_dir=None, output_dir=CACHE_DIR): # Merge all colors (specials and normals) into one dict so we can access # their values simpler. - all_colors = {**colors["special"], **colors["colors"]} + all_colors = {"wallpaper": colors["wallpaper"], + **colors["special"], + **colors["colors"]} # Turn all those colors into util.Color instances for accessing the # .hex and .rgb formats |
