Reorder Layout Widget

- Move to right after tag list
This commit is contained in:
Sravan Balaji
2023-03-27 08:59:04 -04:00
parent 636f222881
commit fd1bd5e2a8
2 changed files with 2 additions and 2 deletions

View File

@@ -383,6 +383,7 @@ awful.screen.connect_for_each_screen(function(s)
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
mylauncher, mylauncher,
s.mytaglist, s.mytaglist,
s.mylayoutbox,
s.mypromptbox, s.mypromptbox,
}, },
s.mytasklist, -- Middle widget s.mytasklist, -- Middle widget
@@ -391,7 +392,6 @@ awful.screen.connect_for_each_screen(function(s)
-- mykeyboardlayout, -- mykeyboardlayout,
wibox.widget.systray(), wibox.widget.systray(),
mytextclock, mytextclock,
s.mylayoutbox,
}, },
} }
end) end)

2
rc.lua
View File

@@ -191,6 +191,7 @@ awful.screen.connect_for_each_screen(function(s)
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
mylauncher, mylauncher,
s.mytaglist, s.mytaglist,
s.mylayoutbox,
s.mypromptbox, s.mypromptbox,
}, },
s.mytasklist, -- Middle widget s.mytasklist, -- Middle widget
@@ -199,7 +200,6 @@ awful.screen.connect_for_each_screen(function(s)
-- mykeyboardlayout, -- mykeyboardlayout,
wibox.widget.systray(), wibox.widget.systray(),
mytextclock, mytextclock,
s.mylayoutbox,
}, },
} }
end) end)