Use a more familiar lua snake_hour

This commit is contained in:
Evgeny
2021-08-01 19:57:41 +03:00
parent 6e24536f99
commit f24288af99
26 changed files with 208 additions and 184 deletions

12
actions-widget.lua Normal file
View File

@@ -0,0 +1,12 @@
-- name = "Actions"
function on_resume()
actions_names = { "Drawer", "Search" }
actions = { "apps_menu", "search" }
ui:show_buttons(actions_names)
end
function on_click(idx)
aio:do_action(actions[idx])
end