mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2024-12-22 11:12:31 +00:00
vertex: fix expanding of centered tasklist
This commit is contained in:
parent
5f550dc33f
commit
15aade78dd
|
@ -430,11 +430,10 @@ function theme.at_screen_connect(s)
|
||||||
-- Create the wibox
|
-- Create the wibox
|
||||||
s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(25), bg = gears.color.create_png_pattern(theme.panelbg) })
|
s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(25), bg = gears.color.create_png_pattern(theme.panelbg) })
|
||||||
|
|
||||||
local wiboxlayout = wibox.layout.align.horizontal()
|
|
||||||
wiboxlayout.expand = "none"
|
|
||||||
-- Add widgets to the wibox
|
-- Add widgets to the wibox
|
||||||
s.mywibox:setup {
|
s.mywibox:setup {
|
||||||
layout = wiboxlayout,
|
layout = wibox.layout.align.horizontal,
|
||||||
|
expand = "none",
|
||||||
{ -- Left widgets
|
{ -- Left widgets
|
||||||
layout = wibox.layout.fixed.horizontal,
|
layout = wibox.layout.fixed.horizontal,
|
||||||
s.mypromptbox,
|
s.mypromptbox,
|
||||||
|
@ -442,8 +441,9 @@ function theme.at_screen_connect(s)
|
||||||
s.mytasklist,
|
s.mytasklist,
|
||||||
},
|
},
|
||||||
{ -- Middle widgets
|
{ -- Middle widgets
|
||||||
layout = wibox.layout.fixed.horizontal,
|
layout = wibox.layout.flex.horizontal,
|
||||||
mytextclock,
|
max_widget_size = 1500,
|
||||||
|
mytextclock
|
||||||
},
|
},
|
||||||
{ -- Right widgets
|
{ -- Right widgets
|
||||||
layout = wibox.layout.fixed.horizontal,
|
layout = wibox.layout.fixed.horizontal,
|
||||||
|
|
Loading…
Reference in a new issue