Fixed typo

This commit is contained in:
2024-07-06 23:01:23 +02:00
parent abbd482ae3
commit d75e907407

View File

@@ -6,8 +6,8 @@ local netdowninfo = wibox.widget.textbox()
local netupinfo = lain.widget.net({
settings = function()
-- luacheck: globals widget net_now
widget:set_text(string.format('%7.2f', net_now.sent))
netdowninfo:set_text(string.format('%8.2f', net_now.received))
widget:set_text(string.format('%6.1f', net_now.sent))
netdowninfo:set_text(string.format('%7.1f', net_now.received))
end,
})