Changes to accommodate disabling the output video

This commit is contained in:
2025-09-28 13:00:08 -04:00
parent f25b9d88b4
commit 8db9f3bd9f
3 changed files with 33 additions and 22 deletions

View File

@@ -56,6 +56,16 @@ db = sqlite3.connect(config_json["db_name"])
db.execute(destroy_table)
db.execute(make_table)
db.execute(insert_row, [
config_json["disabled_name"],
"",
"",
0,
0
])
db.commit()
for button in config_json["buttons"]:
db.execute(insert_row, [
button["name"],