mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-05-30 22:47:14 +02:00
wallpaper: Fix bug with wallpaper not being set. Closes #21
This commit is contained in:
parent
15684c5b10
commit
ba29542a2a
@ -54,15 +54,12 @@ def set_desktop_wallpaper(desktop, img):
|
|||||||
subprocess.Popen(["gsettings", "set", "org.mate.background",
|
subprocess.Popen(["gsettings", "set", "org.mate.background",
|
||||||
"picture-filename", img])
|
"picture-filename", img])
|
||||||
|
|
||||||
|
|
||||||
def set_wallpaper(img):
|
|
||||||
"""Set the wallpaper."""
|
|
||||||
desktop = get_desktop_env()
|
|
||||||
|
|
||||||
if desktop:
|
|
||||||
set_desktop_wallpaper(desktop, img)
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
set_wm_wallpaper(img)
|
||||||
|
|
||||||
|
|
||||||
|
def set_wm_wallpaper(img):
|
||||||
|
"""Set the wallpaper for window manager environments."""
|
||||||
if shutil.which("feh"):
|
if shutil.which("feh"):
|
||||||
subprocess.Popen(["feh", "--bg-fill", img])
|
subprocess.Popen(["feh", "--bg-fill", img])
|
||||||
|
|
||||||
@ -82,5 +79,16 @@ def set_wallpaper(img):
|
|||||||
print("error: No wallpaper setter found.")
|
print("error: No wallpaper setter found.")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
def set_wallpaper(img):
|
||||||
|
"""Set the wallpaper."""
|
||||||
|
desktop = get_desktop_env()
|
||||||
|
|
||||||
|
if desktop:
|
||||||
|
set_desktop_wallpaper(desktop, img)
|
||||||
|
|
||||||
|
else:
|
||||||
|
set_wm_wallpaper(img)
|
||||||
|
|
||||||
print("wallpaper: Set the new wallpaper")
|
print("wallpaper: Set the new wallpaper")
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user