From 67273d6a80226cc5cb900f60ec140e52a690c5b4 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 22 Mar 2026 15:56:06 -0400 Subject: [PATCH] Add apps.db configuration for inventory management applications --- etc/apps.db | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 etc/apps.db diff --git a/etc/apps.db b/etc/apps.db new file mode 100644 index 0000000..fb47216 --- /dev/null +++ b/etc/apps.db @@ -0,0 +1,33 @@ +{ + [ "im_inventory_manager" ] = { + title = "Inventory Manager", + category = "Inventory", + run = "inventoryManager.lua", + }, + [ "im_inventory_client" ] = { + title = "Inventory Display", + category = "Inventory", + run = "inventoryClient.lua", + }, + [ "im_crafting_turtle" ] = { + title = "Crafting Turtle", + category = "Inventory", + run = "craftingTurtle.lua", + requires = { turtle = true }, + }, + [ "im_dropper_controller" ] = { + title = "Dropper Controller", + category = "Inventory", + run = "dropperController.lua", + }, + [ "im_web_bridge" ] = { + title = "Inventory Web Bridge", + category = "Inventory", + run = "inventoryWebBridge.lua", + }, + [ "im_list_devices" ] = { + title = "List Devices", + category = "Inventory", + run = "listDevicesByType.lua", + }, +}