Hi, really like this one. Here's a recipe for people who want to show the status of the timer in Lualine
localfunctionget_timerly_status()
localstate=require("timerly.state")
ifstate.progress==0thenreturn""endlocaltotal=math.max(0, state.total_secs+1) -- Add 1 to sync with timer displaylocalmins=math.floor(total/60)
localsecs=total%60returnstring.format("%s %02d:%02d", state.mode:gsub("^%l", string.upper), mins, secs)
endtable.insert(opts.sections.lualine_x, get_timerly_status)Maybe you would like to use that in the README or not. It's up to you. I didn't see a Discussions or Wiki where I could post this, hence I'm posting as an issue even though it's not really one.
Thank you for your hard work 😄
Hi, really like this one. Here's a recipe for people who want to show the status of the timer in Lualine
Maybe you would like to use that in the README or not. It's up to you. I didn't see a
DiscussionsorWikiwhere I could post this, hence I'm posting as an issue even though it's not really one.Thank you for your hard work 😄