Make more consistent

This commit is contained in:
Warren Hood 2023-02-28 09:39:19 +02:00
parent 124ea9008b
commit 5c88ba8ee2

View file

@ -227,16 +227,16 @@ awful.screen.connect_for_each_screen(function(s)
{ -- Right widgets { -- Right widgets
-- Colors: #DDDD77 #77DDDD #DD77DD #7777DD #77DD77 -- Colors: #DDDD77 #77DDDD #DD77DD #7777DD #77DD77
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
arrow("alpha", "#77DDAA"), arrow("alpha", "#555555"),
wibox.container.background( battery_widget({ wibox.container.background( battery_widget({
show_current_level = true, show_current_level = true,
margin_right = 2, margin_right = 2,
}), "#77DDAA"), }), "#555555"),
arrow("#77DDAA", "#777777"), arrow("#555555", "#444444"),
wibox.container.background( wibox.widget.systray(), "#77DDAA"), wibox.container.background( wibox.widget.systray(), "#444444"),
arrow("#777777", "#77DDDD"), arrow("#444444", "#333333"),
wibox.container.background( mytextclock, "#77DDDD"), wibox.container.background( mytextclock, "#333333"),
arrow("#77DDDD", "alpha"), arrow("#333333", "alpha"),
s.mylayoutbox, s.mylayoutbox,
}, },
} }