18 lines
349 B
Lua
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
|