scripts reorganisation

This commit is contained in:
Evgeny
2022-09-16 09:28:47 +03:00
parent c4aaa8ef30
commit 8bdb2a84a9
7 changed files with 0 additions and 0 deletions

23
main/facts-widget.lua Normal file
View File

@@ -0,0 +1,23 @@
-- name = "Random facts"
-- description = "Radom useless facts"
-- data_source = "https://uselessfacts.jsph.pl/"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
-- foldable = "false"
function on_alarm()
http:get("https://uselessfacts.jsph.pl/random.json?language=en")
end
function on_network_result(result)
text = ajson:get_value(result, "object string:text")
ui:show_lines{ text }
end
function on_click()
if text ~= nil then
system:copy_to_clipboard(text)
end
end