aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-05-13 11:00:45 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-05-13 11:00:45 -0300
commit2f7abf3ee55dc99a6c4eab2cb5b324266a6bbad0 (patch)
treee4ea0a66fde8ae04ced7c175cf4be0bb98e4ff3e
parentfeda6e482cc741de354106dd26a7d180d92ad843 (diff)
downloadawesome-2f7abf3ee55dc99a6c4eab2cb5b324266a6bbad0.tar.gz
awesome-2f7abf3ee55dc99a6c4eab2cb5b324266a6bbad0.tar.bz2
Testing new keybinding for window close
-rw-r--r--config.dot/awesome.link/rc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.dot/awesome.link/rc.lua b/config.dot/awesome.link/rc.lua
index 6b7df95..8cf9067 100644
--- a/config.dot/awesome.link/rc.lua
+++ b/config.dot/awesome.link/rc.lua
@@ -271,7 +271,7 @@ globalkeys = awful.util.table.join(
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
- awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
+ awful.key({ modkey, }, "q", function (c) c:kill() end),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
awful.key({ modkey, }, "o", awful.client.movetoscreen ),