diff options
author | Peter Palfrader <peter@palfrader.org> | 2016-12-19 07:52:59 +0100 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2016-12-19 08:50:01 +0100 |
commit | daf90d6fb603741bdc28c61837c1c580d03d8fe8 (patch) | |
tree | 3af170d82952ad07b67224a15309182f6c53effe /config | |
parent | f7b6b5394f12265d90e4c2333c59a1c8bce95329 (diff) |
use modkey to resize
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) |