diff options
| author | deviantfero <fmorataya.04@gmail.com> | 2020-03-16 03:49:45 -0600 |
|---|---|---|
| committer | deviantfero <fmorataya.04@gmail.com> | 2020-03-16 03:49:45 -0600 |
| commit | f63a8aab97e789a8b90c94ecc0414e1f8a3d5db3 (patch) | |
| tree | 7af67fe15cad8eea6f81766367051dd15edb8e37 /pywal/reload.py | |
| parent | 94b0ca58068eb3dc27e19f1428daf70760ec5315 (diff) | |
reload: revert to using subprocess.run to wait for each merge to finish
Diffstat (limited to 'pywal/reload.py')
| -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 e43d635..13e0ca8 100644 --- a/pywal/reload.py +++ b/pywal/reload.py @@ -26,7 +26,7 @@ def xrdb(xrdb_files=None): if shutil.which("xrdb") and OS != "Darwin": for file in xrdb_files: - subprocess.Popen(["xrdb", "-merge", "-quiet", file]) + subprocess.run(["xrdb", "-merge", "-quiet", file]) def gtk(): |
