[Newm] Avoid name collision in config

This commit is contained in:
Lucien Cartier-Tilet 2023-01-10 12:23:09 +01:00
parent 429d050d1e
commit 9017ccf4ef
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 2 additions and 2 deletions

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,
}