mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-20 11:09:21 +01:00
9 lines
248 B
Lua
9 lines
248 B
Lua
|
|
local paths = require("Paths")
|
|
local system = require("System")
|
|
|
|
local workspace, icon, menu = select(1, ...), select(2, ...), select(3, ...)
|
|
|
|
menu:addItem(system.localization.edit).onTouch = function()
|
|
system.execute(paths.editor, icon.path)
|
|
end |