diff options
author | Mateja <mail@matejamaric.com> | 2021-04-26 12:03:44 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-04-26 12:03:44 +0200 |
commit | 73754ff860a46e3bca6cffe18cee383ed0de5c0f (patch) | |
tree | fa787c46f01c8809356b58a2bd873d810fd4a091 | |
parent | 28468c96ed4ef74e57c5e59557605c28856bf67e (diff) | |
download | dotfiles-73754ff860a46e3bca6cffe18cee383ed0de5c0f.tar.gz dotfiles-73754ff860a46e3bca6cffe18cee383ed0de5c0f.zip |
Move layout widget to right.
-rw-r--r-- | .config/awesome/rc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 4819fa2..0a58a0b 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -122,7 +122,6 @@ awful.screen.connect_for_each_screen(function(s) layout = wibox.layout.align.horizontal, { -- Left widgets layout = wibox.layout.fixed.horizontal, - s.mylayoutbox, s.mytaglist, s.mypromptbox, }, @@ -132,6 +131,7 @@ awful.screen.connect_for_each_screen(function(s) mykeyboardlayout, wibox.widget.systray(), mytextclock, + s.mylayoutbox, }, } end) |