1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 20:41:22 +00:00

Merge pull request #228 from loganjhennessy/fix-multicolor-fsicon

multicolor: lain.widget.fs: fix root percentage variable
This commit is contained in:
Luca CPZ 2018-03-23 11:59:11 +01:00 committed by GitHub
commit 0dbf618bd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -126,7 +126,7 @@ local fsicon = wibox.widget.imagebox(theme.widget_fs)
theme.fs = lain.widget.fs({ theme.fs = lain.widget.fs({
notification_preset = { font = "xos4 Terminus 10", fg = theme.fg_normal }, notification_preset = { font = "xos4 Terminus 10", fg = theme.fg_normal },
settings = function() settings = function()
widget:set_markup(markup.fontfg(theme.font, "#80d9d8", fs_now["/"].percentage .. "% ")) widget:set_markup(markup.fontfg(theme.font, "#80d9d8", fs_now.used .. "% "))
end end
}) })