Files
aiolauncher_scripts/year_progress-widget.lua
2021-07-30 10:42:12 +03:00

13 lines
389 B
Lua

-- name = "Year progess"
-- description = "Shows current year progress"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
function onResume()
local yearDays = 365
local currentDay = os.date("*t").yday
local percent = math.floor(currentDay / (yearDays / 100))
ui:showProgressBar("Year progress: "..percent.."%", currentDay, yearDays)
end