mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-06-21 01:57:55 +02:00
reload: add explicit check to False to avoid exceptions
This commit is contained in:
parent
f63a8aab97
commit
5616cd7765
@ -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.run(["xrdb", "-merge", "-quiet", file])
|
subprocess.run(["xrdb", "-merge", "-quiet", file], check=False)
|
||||||
|
|
||||||
|
|
||||||
def gtk():
|
def gtk():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user