X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/71fd31c2d9b0b43c41c5354cbbe1daed186d0578..c68f69b400236b5b880ea4d25310b276d154f76e:/awesome/bindings.lua diff --git a/awesome/bindings.lua b/awesome/bindings.lua index 81a06b4..9f65a30 100644 --- a/awesome/bindings.lua +++ b/awesome/bindings.lua @@ -4,6 +4,11 @@ root.buttons(awful.util.table.join( awful.button({ }, 4, awful.tag.viewnext), awful.button({ }, 5, awful.tag.viewprev) )) + +clientbuttons = awful.util.table.join( + awful.button({ }, 1, function (c) client.focus = c; c:raise() end), + awful.button({ modkey }, 1, awful.mouse.client.move), + awful.button({ modkey }, 3, awful.mouse.client.resize)) -- }}} -- {{{ Key bindings @@ -130,12 +135,6 @@ for i = 1, 9 do end)) end -clientbuttons = awful.util.table.join( - awful.button({ }, 1, function (c) client.focus = c; c:raise() end), - awful.button({ modkey }, 1, awful.mouse.client.move), - awful.button({ modkey }, 3, awful.mouse.client.resize)) - -- Set keys root.keys(globalkeys) -- }}} -