From 7f42ac5709846a3f8672248e14a8ad7fb8960ffa Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Wed, 5 Apr 2023 14:47:21 -0500 Subject: [PATCH] Awesome configs for Ben. --- .config/awesome/themes/msjche/theme.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.config/awesome/themes/msjche/theme.lua b/.config/awesome/themes/msjche/theme.lua index f5256f6..f06ea8d 100644 --- a/.config/awesome/themes/msjche/theme.lua +++ b/.config/awesome/themes/msjche/theme.lua @@ -348,13 +348,18 @@ function theme.at_screen_connect(s) -- Create the horizontal wibox s.mywibox = awful.wibar({ position = "top", screen = s, height = 28, bg = theme.bg_normal, fg = theme.fg_normal }) + -- Add widgets to the wibox + -- Add widgets to the wibox s.mywibox:setup { + layout = wibox.layout.align.horizontal, { -- Top widgets - layout = wibox.layout.fixed.vertical, + layout = wibox.layout.fixed.horizontal, mylauncher, }, + } + s.mywibox:setup { layout = wibox.layout.align.horizontal, { -- Left widgets layout = wibox.layout.fixed.horizontal, @@ -391,6 +396,8 @@ function theme.at_screen_connect(s) }, } + -- Create the vertical wibox + s.myverticalwibox = awful.wibar({ position = "left", screen = s, width = 120, bg = theme.bg_normal, fg = theme.fg_normal }) end