diff options
author | zachir <zachir@librem.one> | 2023-10-19 09:35:29 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-10-19 09:36:08 -0500 |
commit | c81018b4514b26a6f5716deb2100a7a0b88c9aa2 (patch) | |
tree | 922ffbd9f7cea3ed042aae2b06571d74a77c0fe1 /awesome | |
parent | 8bafc5c23c736cce003902cfbcc896175aeb9ed4 (diff) |
Fix awesome client keybindings
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/rc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 650e61e..54d17aa 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -740,7 +740,7 @@ globalkeys = gears.table.join( ) ---[[ Keybindings for messing with clients -globalkeys = gears.table.join( globalkeys, +clientkeys = gears.table.join( ---[[ Client manipulation -- Moves focus up and down the stack awful.key({ modkey }, "j", @@ -988,7 +988,7 @@ awful.rules.rules = { border_color = beautiful.border_normal, focus = awful.client.focus.filter, raise = true, - keys = nil, + keys = clientkeys, buttons = clientbuttons, screen = awful.screen.preferred, placement = awful.placement.no_overlap+awful.placement.no_offscreen |