diff --git a/rc.lua.template b/rc.lua.template index 75f8026..5b4b615 100644 --- a/rc.lua.template +++ b/rc.lua.template @@ -507,6 +507,15 @@ globalkeys = my_table.join( end, {description = "show dmenu", group = "launcher"}) --]] + -- alternatively use rofi, a dmenu-like application with more features + -- check https://github.com/DaveDavenport/rofi for more details + --[[ rofi + awful.key({ modkey }, "x", function () + os.execute(string.format("rofi -show %s -theme %s", + 'run', 'dmenu')) + end, + {description = "show rofi", group = "launcher"}), + --]] -- Prompt awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, {description = "run prompt", group = "launcher"}),