Fixed typo

This commit is contained in:
Mutzi 2024-07-06 23:01:23 +02:00
parent abbd482ae3
commit d75e907407
Signed by: root
GPG Key ID: 2437494E09F13876

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,
})