mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-12-01 04:13:43 +01:00
Merge pull request #492 from deviantfero/fix-xrdb-reload
reload: revert to using subprocess.run to wait for each merge to finish
This commit is contained in:
commit
ee50fb3ab3
@ -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], check=False)
|
||||||
|
|
||||||
|
|
||||||
def gtk():
|
def gtk():
|
||||||
|
Loading…
Reference in New Issue
Block a user