mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-05-23 01:30:55 +02:00
wallpaper: Make WM faster
This commit is contained in:
parent
477850b45b
commit
553ba8fd9e
@ -31,6 +31,8 @@ def get_desktop_env():
|
|||||||
if desktop:
|
if desktop:
|
||||||
return "SWAY"
|
return "SWAY"
|
||||||
|
|
||||||
|
return "WM"
|
||||||
|
|
||||||
|
|
||||||
def xfconf(path, img):
|
def xfconf(path, img):
|
||||||
"""Call xfconf to set the wallpaper on XFCE."""
|
"""Call xfconf to set the wallpaper on XFCE."""
|
||||||
@ -64,7 +66,10 @@ def set_desktop_wallpaper(desktop, img):
|
|||||||
"""Set the wallpaper for the desktop environment."""
|
"""Set the wallpaper for the desktop environment."""
|
||||||
desktop = str(desktop).lower()
|
desktop = str(desktop).lower()
|
||||||
|
|
||||||
if "xfce" in desktop or "xubuntu" in desktop:
|
if desktop == "WM":
|
||||||
|
set_wm_wallpaper(img)
|
||||||
|
|
||||||
|
elif "xfce" in desktop or "xubuntu" in desktop:
|
||||||
# XFCE requires two commands since they differ between versions.
|
# XFCE requires two commands since they differ between versions.
|
||||||
xfconf("/backdrop/screen0/monitor0/image-path", img)
|
xfconf("/backdrop/screen0/monitor0/image-path", img)
|
||||||
xfconf("/backdrop/screen0/monitor0/workspace0/last-image", img)
|
xfconf("/backdrop/screen0/monitor0/workspace0/last-image", img)
|
||||||
@ -86,9 +91,6 @@ def set_desktop_wallpaper(desktop, img):
|
|||||||
elif "sway" in desktop:
|
elif "sway" in desktop:
|
||||||
util.disown(["swaymsg", "output", "*", "bg", img, "fill"])
|
util.disown(["swaymsg", "output", "*", "bg", img, "fill"])
|
||||||
|
|
||||||
else:
|
|
||||||
set_wm_wallpaper(img)
|
|
||||||
|
|
||||||
|
|
||||||
def set_mac_wallpaper(img):
|
def set_mac_wallpaper(img):
|
||||||
"""Set the wallpaper on macOS."""
|
"""Set the wallpaper on macOS."""
|
||||||
|
Loading…
Reference in New Issue
Block a user