diff options
| author | Blista Kanjo | 2023-08-30 09:10:23 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2023-08-30 09:10:23 -0400 |
| commit | 52ce8896885260ccaefc826a31f2c6b66a415d58 (patch) | |
| tree | 9a2fc5560e76b92dbd5ac4646f46139885b6d532 /.config/awesome/rc-4.3-3.lua | |
| parent | dcece8a7c0216211be892f968f4ba4966939ff0e (diff) | |
feat: add another `show main menu` keybind
Diffstat (limited to '.config/awesome/rc-4.3-3.lua')
| -rw-r--r-- | .config/awesome/rc-4.3-3.lua | 3 |
1 files changed, 3 insertions, 0 deletions
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" }), |
