mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2024-12-22 11:12:31 +00:00
Merge pull request #272 from aajjbb/feature/powerarrow-dark-net-fix
Using string.format() on the net widget in powerarrow-dark.
This commit is contained in:
commit
daf83dde47
|
@ -247,9 +247,9 @@ local neticon = wibox.widget.imagebox(theme.widget_net)
|
||||||
local net = lain.widget.net({
|
local net = lain.widget.net({
|
||||||
settings = function()
|
settings = function()
|
||||||
widget:set_markup(markup.font(theme.font,
|
widget:set_markup(markup.font(theme.font,
|
||||||
markup("#7AC82E", " " .. net_now.received)
|
markup("#7AC82E", " " .. string.format("%06.1f", net_now.received))
|
||||||
.. " " ..
|
.. " " ..
|
||||||
markup("#46A8C3", " " .. net_now.sent .. " ")))
|
markup("#46A8C3", " " .. string.format("%06.1f", net_now.sent) .. " ")))
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue