From 0c60d3bd375ef0265fe59476f3981d91b6516c7c Mon Sep 17 00:00:00 2001 From: Benno Bielmeier Date: Tue, 23 Nov 2021 15:13:33 +0100 Subject: [PATCH] Fix: add comma in global key binding definition --- rc.lua.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.lua.template b/rc.lua.template index cbfb8d3..b1325a9 100644 --- a/rc.lua.template +++ b/rc.lua.template @@ -535,7 +535,7 @@ globalkeys = mytable.join( os.execute(string.format("dmenu_run -i -fn 'Monospace' -nb '%s' -nf '%s' -sb '%s' -sf '%s'", beautiful.bg_normal, beautiful.fg_normal, beautiful.bg_focus, beautiful.fg_focus)) end, - {description = "show dmenu", group = "launcher"}) + {description = "show dmenu", group = "launcher"}), --]] -- alternatively use rofi, a dmenu-like application with more features -- check https://github.com/DaveDavenport/rofi for more details