From e86239d3b56820c6dd3d8df771fc65b8ad30f257 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 6 Jul 2017 22:33:10 +1000 Subject: [PATCH] wallpaper: Fix a bug causing wallpaper not to change properly in some DEs. --- pywal/wallpaper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pywal/wallpaper.py b/pywal/wallpaper.py index 1df3403f..59f1aeb9 100644 --- a/pywal/wallpaper.py +++ b/pywal/wallpaper.py @@ -65,12 +65,12 @@ def set_desktop_wallpaper(desktop, img): elif "muffin" in desktop or "cinnamon" in desktop: subprocess.Popen(["gsettings", "set", "org.cinnamon.desktop.background", - "picture-uri", "file:///" + img]) + "picture-uri", "file://" + img]) elif "gnome" in desktop: subprocess.Popen(["gsettings", "set", "org.gnome.desktop.background", - "picture-uri", "file:///" + img]) + "picture-uri", "file://" + img]) elif "mate" in desktop: subprocess.Popen(["gsettings", "set", "org.mate.background",