Reno98 updates

This commit is contained in:
Yessiest 2022-08-17 20:08:45 +04:00
parent 9fc28bdedc
commit d112c4ad58
2 changed files with 41 additions and 1 deletions

View File

@ -106,3 +106,43 @@ client.connect_signal("request::titlebars",function(c)
}):setup(t.titlebar({widget = wibox.container.background})) }):setup(t.titlebar({widget = wibox.container.background}))
end) end)
--}}} --}}}
--{{{ Screen
awful.screen.connect_for_each_screen(function(s)
-- Top bar
s.topbar = awful.wibar({
position = "top",
screen = s,
visible = false
})
s.topbar:setup {
layout = wibox.layout.flex.horizontal
}
-- Bottom bar
s.bottombar = awful.wibar({
position = "bottom",
screen = s,
visible = false
})
s.bottombar:setup {
layout = wibox.layout.flex.horizontal
}
-- Left bar
s.leftbar = awful.wibar({
position = "left",
screen = s,
visible = false
})
s.leftbar:setup {
layout = wibox.layout.flex.horizontal
}
-- Right bar
s.rightbar = awful.wibar({
position = "right",
screen = s,
visible = false
})
s.rightbar:setup {
layout = wibox.layout.flex.horizontal
}
end)

View File

@ -336,7 +336,7 @@ theme.widgets = {
bg_normal = theme.titlebar_bg_normal, bg_normal = theme.titlebar_bg_normal,
fg_focus = "#FAFAFA", fg_focus = "#FAFAFA",
fg_normal = theme.fg_normal, fg_normal = theme.fg_normal,
size = 22 size = 24
}, },
titlebar_left = { titlebar_left = {
bgimage_normal = theme.titlebar_bgimage_left, bgimage_normal = theme.titlebar_bgimage_left,