From fd1bd5e2a81136956a3defe225dab2074f62e882 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Mon, 27 Mar 2023 08:59:04 -0400 Subject: [PATCH] Reorder Layout Widget - Move to right after tag list --- README.org | 2 +- rc.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 80928f6..9314b32 100644 --- a/README.org +++ b/README.org @@ -383,6 +383,7 @@ awful.screen.connect_for_each_screen(function(s) layout = wibox.layout.fixed.horizontal, mylauncher, s.mytaglist, + s.mylayoutbox, s.mypromptbox, }, s.mytasklist, -- Middle widget @@ -391,7 +392,6 @@ awful.screen.connect_for_each_screen(function(s) -- mykeyboardlayout, wibox.widget.systray(), mytextclock, - s.mylayoutbox, }, } end) diff --git a/rc.lua b/rc.lua index 361b023..5ec6ac2 100644 --- a/rc.lua +++ b/rc.lua @@ -191,6 +191,7 @@ awful.screen.connect_for_each_screen(function(s) layout = wibox.layout.fixed.horizontal, mylauncher, s.mytaglist, + s.mylayoutbox, s.mypromptbox, }, s.mytasklist, -- Middle widget @@ -199,7 +200,6 @@ awful.screen.connect_for_each_screen(function(s) -- mykeyboardlayout, wibox.widget.systray(), mytextclock, - s.mylayoutbox, }, } end)