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:
dylan 2020-03-16 12:39:46 +02:00 committed by GitHub
commit ee50fb3ab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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():