summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rc.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/rc.lua b/rc.lua
index bad5a4c..60f3002 100644
--- a/rc.lua
+++ b/rc.lua
@@ -98,10 +98,6 @@ for s in screen do
end
end)
- -- Widgets that are aligned to the left
- local left_layout = wibox.layout.fixed.vertical()
- left_layout:add(mypromptbox[s])
-
-- Widgets that are aligned to the right
local right_layout = wibox.layout.fixed.vertical()
@@ -113,7 +109,7 @@ for s in screen do
-- Now bring it all together (with the tasklist in the middle)
local layout = wibox.layout.align.vertical()
- layout:set_top(left_layout)
+ layout:set_top(mypromptbox[s])
layout:set_middle(pgr.widget)
layout:set_bottom(right_layout)