From 8d0ea5eade589efe5b35cf62e8f9036f2dbc5474 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sun, 7 Jul 2013 00:22:13 +0200 Subject: [PATCH] open menu in the top left I need to check if it uses the current screen. --- awesome/bindings.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awesome/bindings.lua b/awesome/bindings.lua index 340786e..6d9b130 100644 --- a/awesome/bindings.lua +++ b/awesome/bindings.lua @@ -28,7 +28,6 @@ globalkeys = awful.util.table.join( awful.client.focus.byidx(-1) if client.focus then client.focus:raise() end end), - awful.key({ modkey }, "w", function () mymainmenu:show() end), -- Layout manipulation awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end), @@ -68,6 +67,8 @@ globalkeys = awful.util.table.join( -- }}} -- {{{ My Keys + -- Menu + awful.key({ modkey }, "w", function () mymainmenu:show({ coords = { x = 0, y = 0}}) end), -- Prompt awful.key({ modkey }, "space", function () mypromptbox[mouse.screen]:run() end), -- switch layout -- 2.48.1