diff options
| author | Dylan Araps <[email protected]> | 2018-01-07 08:44:43 +1100 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2018-01-07 08:44:55 +1100 |
| commit | 85012069c30e7824d1a6340e36b31999d5a08b03 (patch) | |
| tree | 5667bb971fa6c9ebb53af08822655570b51acc3d | |
| parent | version: bump (diff) | |
| download | pywal-85012069c30e7824d1a6340e36b31999d5a08b03.tar.xz pywal-85012069c30e7824d1a6340e36b31999d5a08b03.zip | |
reload: Fix perm error. Closes #157.
| -rw-r--r-- | pywal/reload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/reload.py b/pywal/reload.py index ea1fb99..bbf1932 100644 --- a/pywal/reload.py +++ b/pywal/reload.py @@ -15,7 +15,7 @@ def tty(): tty_script = os.path.join(CACHE_DIR, "colors-tty.sh") if os.path.isfile(tty_script): - subprocess.Popen([tty_script]) + subprocess.Popen(["sh", tty_script]) def xrdb(xrdb_files=None): |