diff options
-rw-r--r-- | .config/awesome/rc.lua | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 0a58a0b..23d2b59 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -87,8 +87,8 @@ local taglist_buttons = gears.table.join( client.focus:toggle_tag(t) end end), - awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end), - awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end) + awful.button({ }, 4, function(t) awful.tag.viewprev(t.screen) end), + awful.button({ }, 5, function(t) awful.tag.viewnext(t.screen) end) ) local my_tags = { "a", "s", "d", "f", "u", "i", "o", "p" } @@ -260,6 +260,11 @@ awful.rules.rules = { focus = awful.client.focus.filter, raise = true, keys = clientkeys, + + maximized_vertical = false, + maximized_horizontal = false, + size_hints_honor = false, + buttons = clientbuttons, screen = awful.screen.preferred, placement = awful.placement.no_overlap+awful.placement.no_offscreen |