diff options
| author | Dylan Araps <[email protected]> | 2017-06-25 16:35:05 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-06-25 16:35:05 +1000 |
| commit | 2a611a743936a9faecbd1a0c367ea8aa63664da8 (patch) | |
| tree | eeae869f8c8982e071ed8a0e832c1749bcd84d38 | |
| parent | DOCS: README (diff) | |
| download | pywal-2a611a743936a9faecbd1a0c367ea8aa63664da8.tar.xz pywal-2a611a743936a9faecbd1a0c367ea8aa63664da8.zip | |
wallpaper: Supress errors on xfce
| -rwxr-xr-x | wal | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -364,8 +364,8 @@ def get_desktop_env(): def xfconf(path, img): """Call xfconf to set the wallpaper on XFCE.""" - subprocess.Popen(["xfconf-query", "--channel", "xfce4-desktop", - "--property", path, "--set", img]) + disown("xfconf-query", "--channel", "xfce4-desktop", + "--property", path, "--set", img) def set_desktop_wallpaper(desktop, img): |