mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-29 03:13:47 +01:00
Merge pull request #395 from ellisgeek/master
Add support for setting wallpaper in xfce > 4.12
This commit is contained in:
commit
3cedb38053
@ -2,6 +2,7 @@
|
||||
import ctypes
|
||||
import logging
|
||||
import os
|
||||
import re
|
||||
import shutil
|
||||
import subprocess
|
||||
import urllib.parse
|
||||
@ -39,8 +40,19 @@ def get_desktop_env():
|
||||
return None
|
||||
|
||||
|
||||
def xfconf(path, img):
|
||||
def xfconf(img):
|
||||
"""Call xfconf to set the wallpaper on XFCE."""
|
||||
xfconf_re = re.compile(
|
||||
r"^/backdrop/screen\d/monitor(?:0|\w*)/"
|
||||
r"(?:(?:image-path|last-image)|workspace\d/last-image)$",
|
||||
flags=re.M
|
||||
)
|
||||
xfconf_data = subprocess.check_output(
|
||||
["xfconf-query", "--channel", "xfce4-desktop", "--list"],
|
||||
stderr=subprocess.DEVNULL
|
||||
).decode('utf8')
|
||||
paths = xfconf_re.findall(xfconf_data)
|
||||
for path in paths:
|
||||
util.disown(["xfconf-query", "--channel", "xfce4-desktop",
|
||||
"--property", path, "--set", img])
|
||||
|
||||
@ -75,9 +87,7 @@ def set_desktop_wallpaper(desktop, img):
|
||||
desktop = str(desktop).lower()
|
||||
|
||||
if "xfce" in desktop or "xubuntu" in desktop:
|
||||
# XFCE requires two commands since they differ between versions.
|
||||
xfconf("/backdrop/screen0/monitor0/image-path", img)
|
||||
xfconf("/backdrop/screen0/monitor0/workspace0/last-image", img)
|
||||
xfconf(img)
|
||||
|
||||
elif "muffin" in desktop or "cinnamon" in desktop:
|
||||
util.disown(["gsettings", "set",
|
||||
|
Loading…
Reference in New Issue
Block a user