summaryrefslogtreecommitdiff
path: root/pywal/util.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-08-25 19:39:47 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-08-25 19:39:47 +1000
commitf50cac635e3e7cb55bd0898985dea1b048120263 (patch)
tree646a7ce42f5a87543a2510f279f24224db513f97 /pywal/util.py
parent93258bdcd8a776a298147e973e156c4488995c8c (diff)
OS: Added support for Windows
Diffstat (limited to 'pywal/util.py')
-rw-r--r--pywal/util.py3
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):