diff options
author | Mateja <mail@matejamaric.com> | 2021-04-26 14:42:27 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-04-26 14:42:27 +0200 |
commit | e95b2849765ea9a60a4602bf7efc4c9879824b99 (patch) | |
tree | aa357c103420ff350cf459127bdd6cf390f8b7dd | |
parent | 73754ff860a46e3bca6cffe18cee383ed0de5c0f (diff) | |
download | dotfiles-e95b2849765ea9a60a4602bf7efc4c9879824b99.tar.gz dotfiles-e95b2849765ea9a60a4602bf7efc4c9879824b99.zip |
Resize hints set to false and better tag scrolling.
-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 |