AutoYADM commit: 2024-12-03 20:30:03

This commit is contained in:
Daniel Fichtinger 2024-12-03 20:30:03 -05:00
parent a4051da7fa
commit 4caa9f7e01
2 changed files with 21 additions and 0 deletions

View file

@ -50,6 +50,19 @@ local sections = {
require("noice").api.status.mode.get,
cond = require("noice").api.status.mode.has,
},
function()
local ok, pomo = pcall(require, "pomo")
if not ok then
return ""
end
local timer = pomo.get_first_to_finish()
if timer == nil then
return ""
end
return "󰄉 " .. tostring(timer)
end,
},
lualine_b = { "branch", "diff" },
lualine_c = { { "filename", path = 1 } },

View file

@ -9,5 +9,13 @@ return {
},
opts = {
-- See below for full list of options 👇
notifiers = {
{
name = "Default",
opts = {
sticky = false,
},
},
},
},
}