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

Commit d695168

Browse files
committed
Errors fixed.
1 parent 2329b18 commit d695168

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pywal/export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def get_export_type(export_type):
9292
"json": "colors.json",
9393
"konsole": "colors-konsole.colorscheme",
9494
"kitty": "colors-kitty.conf",
95-
"nqq": "colors-nqq.css",
95+
"nqq": "colors-nqq.css",
9696
"plain": "colors",
9797
"putty": "colors-putty.reg",
9898
"rofi": "colors-rofi.Xresources",

pywal/wallpaper.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def set_wm_wallpaper(img):
9191
def set_desktop_wallpaper(desktop, img):
9292
"""Set the wallpaper for the desktop environment."""
9393
desktop = str(desktop).lower()
94-
94+
9595
if "xfce" in desktop or "xubuntu" in desktop:
9696
xfconf(img)
9797

@@ -125,8 +125,7 @@ def set_desktop_wallpaper(desktop, img):
125125
d.writeConfig("Image", "%s")};
126126
"""
127127
util.disown(["qdbus", "org.kde.plasmashell", "/PlasmaShell", "org.kde.PlasmaShell.evaluateScript",
128-
string % img])
129-
128+
string % img])
130129
else:
131130
set_wm_wallpaper(img)
132131

0 commit comments

Comments
 (0)