Initial commit

This commit is contained in:
Evgeny
2021-07-29 07:51:07 +03:00
commit 091c7dcd0b
11 changed files with 169 additions and 0 deletions

6
year_progress-widget.lua Normal file
View File

@@ -0,0 +1,6 @@
function onResume()
local yearDays = 365
local currentDay = os.date("*t").yday
local percent = math.floor(currentDay / (yearDays / 100))
aio:showProgressBar("Year progress: "..percent.."%", currentDay, yearDays)
end