mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-28 19:03:17 +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":
|
||||
for file in xrdb_files:
|
||||
subprocess.Popen(["xrdb", "-merge", "-quiet", file])
|
||||
subprocess.run(["xrdb", "-merge", "-quiet", file], check=False)
|
||||
|
||||
|
||||
def gtk():
|
||||
|
Loading…
Reference in New Issue
Block a user