mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-09 03:58:08 +11:00
14 lines
324 B
Lua
14 lines
324 B
Lua
|
-- This is released into the public domain.
|
||
|
-- No warranty is provided, implied or otherwise.
|
||
|
|
||
|
-- app-fm: dummy app to start FM
|
||
|
neo.requestAccess("x.neo.pub.base").showFileDialogAsync(nil)
|
||
|
while true do
|
||
|
local x = {coroutine.yield()}
|
||
|
if x[1] == "x.neo.pub.base" then
|
||
|
if x[2] == "filedialog" then
|
||
|
return
|
||
|
end
|
||
|
end
|
||
|
end
|