skip inactive outputs

This commit is contained in:
piotr
2022-04-13 00:06:27 +02:00
parent 149f577a23
commit 0226423c42

View File

@@ -378,6 +378,10 @@ def main():
panels = panels + to_append
for panel in panels:
if panel["output"] and panel["output"] not in common.outputs:
print("Output '{}' not found".format(panel["output"]))
continue
check_key(panel, "icons", "")
icons_path = ""
if panel["icons"] == "light":