summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2010-01-28 23:48:10 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2010-01-28 23:48:10 +0100
commit8302410a52afbd4fcb3cc311b5492cfc44bb9407 (patch)
treeb754bf9174c916b588e0ee8002a23efc98e75706 /rc.lua
parent1cc68cffceba9b57578936718a5dd05961111d3d (diff)
downloadawesome-configs-8302410a52afbd4fcb3cc311b5492cfc44bb9407.tar.xz
rc.lua: add Alt to clients menu binding down
Clients menu is now a complete keyboard-only client switching solution. I added keygrabber support to this menu in awesome v3.4.3. In the rc.lua binding menu state is properly toggled on *every* Alt+Esc press, Alt jumps to the next item and it is always placed on the center of the screen.
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/rc.lua b/rc.lua
index db6a75e..f930520 100644
--- a/rc.lua
+++ b/rc.lua
@@ -415,6 +415,7 @@ globalkeys = awful.util.table.join(
if client.focus then client.focus:raise() end
end),
awful.key({ altkey }, "Escape", function () mouse.coords({x=525, y=330}, true)
+ awful.menu.menu_keys.down = { "Down", "Alt_L" }
local cmenu = awful.menu.clients({ width = 230 }, true)
end),
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx(1) end),