mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-12-01 12:24:36 +01:00
reload: revert to using subprocess.run to wait for each merge to finish
This commit is contained in:
parent
94b0ca5806
commit
f63a8aab97
@ -26,7 +26,7 @@ def xrdb(xrdb_files=None):
|
|||||||
|
|
||||||
if shutil.which("xrdb") and OS != "Darwin":
|
if shutil.which("xrdb") and OS != "Darwin":
|
||||||
for file in xrdb_files:
|
for file in xrdb_files:
|
||||||
subprocess.Popen(["xrdb", "-merge", "-quiet", file])
|
subprocess.run(["xrdb", "-merge", "-quiet", file])
|
||||||
|
|
||||||
|
|
||||||
def gtk():
|
def gtk():
|
||||||
|
Loading…
Reference in New Issue
Block a user