Add apps.db configuration for inventory management applications

This commit is contained in:
MayaTheShy
2026-03-22 15:56:06 -04:00
parent 15362edc87
commit 67273d6a80

33
etc/apps.db Normal file
View File

@@ -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",
},
}