Files
aiolauncher_scripts/samples/drawer-sample4.lua
2024-07-12 09:11:32 +04:00

18 lines
349 B
Lua

-- name = "Drawer sample #4"
-- type = "drawer"
-- testing = "true"
function on_drawer_open()
pkgs = apps:list()
apps:request_icons(pkgs)
end
function on_icons_ready(icons)
names = map(function(it) return apps:name(it) end, pkgs)
drawer:show_list(names, icons, nil, true)
end
function on_click(idx)
apps:launch(pkgs[idx])
end