diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-08-25 19:39:47 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-08-25 19:39:47 +1000 |
| commit | f50cac635e3e7cb55bd0898985dea1b048120263 (patch) | |
| tree | 646a7ce42f5a87543a2510f279f24224db513f97 /pywal/util.py | |
| parent | 93258bdcd8a776a298147e973e156c4488995c8c (diff) | |
OS: Added support for Windows
Diffstat (limited to 'pywal/util.py')
| -rw-r--r-- | pywal/util.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pywal/util.py b/pywal/util.py index 55be6c2..894c049 100644 --- a/pywal/util.py +++ b/pywal/util.py @@ -113,8 +113,7 @@ def disown(cmd): disown it and hide it's output.""" subprocess.Popen(["nohup", *cmd], stdout=subprocess.DEVNULL, - stderr=subprocess.DEVNULL, - preexec_fn=os.setpgrp) + stderr=subprocess.DEVNULL) def msg(input_msg, notify): |
