[Newm] Avoid name collision in config

This commit is contained in:
2023-01-10 12:23:09 +01:00
parent 429d050d1e
commit 9017ccf4ef

View File

@@ -61,9 +61,9 @@ def on_startup():
)
with open("{}/.cache/wallpaper".format(os.environ["HOME"])) as file:
with open("{}/.cache/wallpaper".format(os.environ["HOME"])) as wp_cache:
background = {
"path": file.read().strip(),
"path": wp_cache.read().strip(),
"anim": True,
}