Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit c3faf0e

Browse files
committed
Errors fixed.
1 parent d695168 commit c3faf0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pywal/wallpaper.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ def set_desktop_wallpaper(desktop, img):
121121
string = """
122122
var allDesktops = desktops();for (i=0;i<allDesktops.length;i++){
123123
d = allDesktops[i];d.wallpaperPlugin = "org.kde.image";
124-
d.currentConfigGroup = Array("Wallpaper", "org.kde.image", "General");
125-
d.writeConfig("Image", "%s")};
124+
d.currentConfigGroup = Array("Wallpaper", "org.kde.image",
125+
"General");d.writeConfig("Image", "%s")};
126126
"""
127-
util.disown(["qdbus", "org.kde.plasmashell", "/PlasmaShell", "org.kde.PlasmaShell.evaluateScript",
128-
string % img])
127+
util.disown(["qdbus", "org.kde.plasmashell", "/PlasmaShell",
128+
"org.kde.PlasmaShell.evaluateScript", string % img])
129129
else:
130130
set_wm_wallpaper(img)
131131

0 commit comments

Comments
 (0)