Files
aiolauncher_scripts/public_ip-widget.lua
2021-08-03 08:34:39 +03:00

14 lines
288 B
Lua

-- name = "Public IP"
-- description = "Shows your public IP (ipify.org)"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
function on_alarm()
http:get("https://api.ipify.org")
end
function on_network_result(result)
ui:show_text(result)
end