From 52ce8896885260ccaefc826a31f2c6b66a415d58 Mon Sep 17 00:00:00 2001 From: Blista Kanjo Date: Wed, 30 Aug 2023 09:10:23 -0400 Subject: feat: add another `show main menu` keybind --- .config/awesome/rc-4.3-3.lua | 3 +++ .config/awesome/rc.lua | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.config/awesome/rc-4.3-3.lua b/.config/awesome/rc-4.3-3.lua index b8bd490..94f27ef 100644 --- a/.config/awesome/rc-4.3-3.lua +++ b/.config/awesome/rc-4.3-3.lua @@ -308,6 +308,9 @@ globalkeys = gears.table.join( awful.key({ modkey, }, "Menu", function() mymainmenu:show() end, { description = "show main menu", group = "awesome" }), + awful.key({ modkey, "Shift" }, "F10", function() mymainmenu:show() end, + { description = "show main menu", group = "awesome" }), + -- move window by index in tiling layout awful.key({ modkey, "Control" }, "j", function() awful.client.swap.byidx(1) end, { description = "swap with next client by index", group = "client" }), diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index b274c0b..9ce93aa 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -296,6 +296,9 @@ awful.keyboard.append_global_keybindings({ awful.key({ modkey, }, "Menu", function() mymainmenu:show() end, { description = "show main menu", group = "awesome" }), + awful.key({ modkey, "Shift" }, "F10", function() mymainmenu:show() end, + { description = "show main menu", group = "awesome" }), + -- move window by index in tiling layout awful.key({ modkey, "Control" }, "j", function() awful.client.swap.byidx(1) end, { description = "swap with next client by index", group = "client" }), -- cgit v1.2.3