diff options
| author | Dylan Araps <[email protected]> | 2017-06-17 15:38:24 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-06-17 15:38:24 +1000 |
| commit | 94d3a88b5a8bc86b22bce8d8fa0eec7eb33a395a (patch) | |
| tree | 74423b9645177532e2cd57a649226e31fbc2a505 | |
| parent | General: Set the wallpaper (diff) | |
| download | pywal-94d3a88b5a8bc86b22bce8d8fa0eec7eb33a395a.tar.xz pywal-94d3a88b5a8bc86b22bce8d8fa0eec7eb33a395a.zip | |
General: Fix osascript quoting
| -rw-r--r-- | wal.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ def set_wallpaper(img): elif OS == "Darwin": call(["osascript", "-e", "'tell application \"Finder\" to set \ - desktop picture to POSIX file \"'\"", img, "\""]) + desktop picture to POSIX file\'", img, "\'"]) else: call(["gsettings", "set", "org.gnome.desktop.background", |