Changed "fs" to "theme.fs"
Restored "fs" declaration and changed "fs" to "theme.fs" instead, to prevent breaking the filestorage notification in rc.lua, while fixing the file storage widget being added.
This commit is contained in:
parent
5481829112
commit
14cdee4512
|
@ -352,7 +352,7 @@ function theme.at_screen_connect(s)
|
|||
pl(wibox.widget { memicon, mem.widget, layout = wibox.layout.align.horizontal }, "#777E76"),
|
||||
pl(wibox.widget { cpuicon, cpu.widget, layout = wibox.layout.align.horizontal }, "#4B696D"),
|
||||
pl(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, "#4B3B51"),
|
||||
--pl(wibox.widget { fsicon, fs and fs.widget, layout = wibox.layout.align.horizontal }, "#CB755B"),
|
||||
--pl(wibox.widget { fsicon, theme.fs and theme.fs.widget, layout = wibox.layout.align.horizontal }, "#CB755B"),
|
||||
pl(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, "#8DAA9A"),
|
||||
pl(wibox.widget { neticon, net.widget, layout = wibox.layout.align.horizontal }, "#C0C0A2"),
|
||||
pl(binclock.widget, "#777E76"),
|
||||
|
@ -371,7 +371,7 @@ function theme.at_screen_connect(s)
|
|||
arrow("#4B696D", "#4B3B51"),
|
||||
wibox.container.background(wibox.container.margin(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, 4, 4), "#4B3B51"),
|
||||
arrow("#4B3B51", "#CB755B"),
|
||||
wibox.container.background(wibox.container.margin(wibox.widget { fsicon, fs and fs.widget, layout = wibox.layout.align.horizontal }, 3, 3), "#CB755B"),
|
||||
wibox.container.background(wibox.container.margin(wibox.widget { fsicon, theme.fs and theme.fs.widget, layout = wibox.layout.align.horizontal }, 3, 3), "#CB755B"),
|
||||
arrow("#CB755B", "#8DAA9A"),
|
||||
wibox.container.background(wibox.container.margin(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, 3, 3), "#8DAA9A"),
|
||||
arrow("#8DAA9A", "#C0C0A2"),
|
||||
|
|
Loading…
Reference in New Issue