Changed run binding to use "Menubar" using keycode.
This commit is contained in:
parent
4c51c4aa3f
commit
7e3c8076fb
@ -317,8 +317,9 @@ globalkeys = gears.table.join(
|
|||||||
{description = "restore minimized", group = "client"}),
|
{description = "restore minimized", group = "client"}),
|
||||||
|
|
||||||
-- Prompt
|
-- Prompt
|
||||||
awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end,
|
-- Unbound to favour "Menu bar boune below.
|
||||||
{description = "run prompt", group = "launcher"}),
|
--awful.key({ modkey }, "#27", function () awful.screen.focused().mypromptbox:run() end,
|
||||||
|
-- {description = "run prompt", group = "launcher"}),
|
||||||
|
|
||||||
awful.key({ modkey, "Shift" }, "r",
|
awful.key({ modkey, "Shift" }, "r",
|
||||||
function ()
|
function ()
|
||||||
@ -331,7 +332,8 @@ globalkeys = gears.table.join(
|
|||||||
end,
|
end,
|
||||||
{description = "lua execute prompt", group = "awesome"}),
|
{description = "lua execute prompt", group = "awesome"}),
|
||||||
-- Menubar
|
-- Menubar
|
||||||
awful.key({ modkey }, "p", function() menubar.show() end,
|
-- Bound to keycode 27, which is 'r' on qwerty for consistency across layouts.
|
||||||
|
awful.key({ modkey }, "#27", function() menubar.show() end,
|
||||||
{description = "show the menubar", group = "launcher"}),
|
{description = "show the menubar", group = "launcher"}),
|
||||||
|
|
||||||
-- Custom bindings
|
-- Custom bindings
|
||||||
|
Loading…
Reference in New Issue
Block a user