small fix

This commit is contained in:
Evgeny
2022-08-23 04:28:17 +03:00
parent 9a6fb3f6fc
commit 07f5978511

View File

@@ -0,0 +1,13 @@
-- name = "Year progress"
-- description = "Shows current year progress"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
-- foldable = "false"
function on_resume()
local year_days = 365
local current_day = os.date("*t").yday
local percent = math.floor(current_day / (year_days / 100))
ui:show_progress_bar("Year progress: "..percent.."%", current_day, year_days)
end