diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/awesome/rc.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index b426dea..c02e2fc 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -469,8 +469,10 @@ clientkeys = awful.util.table.join( clientbuttons = awful.util.table.join( awful.button({ }, 1, function (c) client.focus = c; c:raise() end), - awful.button({ "Mod1" }, 1, awful.mouse.client.move), - awful.button({ "Mod1" }, 3, awful.mouse.client.resize)) + awful.button({ modkey }, 1, awful.mouse.client.move), + awful.button({ modkey }, 3, awful.mouse.client.resize)) + -- awful.button({ "Mod1" }, 1, awful.mouse.client.move), + -- awful.button({ "Mod1" }, 3, awful.mouse.client.resize)) -- Set keys root.keys(globalkeys) |