Merge pull request #294 from bbenno/master

Fix: add comma in global key binding definition
This commit is contained in:
Luca CPZ 2021-11-23 14:53:06 +00:00 committed by GitHub
commit 8fa759cef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ globalkeys = mytable.join(
os.execute(string.format("dmenu_run -i -fn 'Monospace' -nb '%s' -nf '%s' -sb '%s' -sf '%s'", 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)) beautiful.bg_normal, beautiful.fg_normal, beautiful.bg_focus, beautiful.fg_focus))
end, end,
{description = "show dmenu", group = "launcher"}) {description = "show dmenu", group = "launcher"}),
--]] --]]
-- alternatively use rofi, a dmenu-like application with more features -- alternatively use rofi, a dmenu-like application with more features
-- check https://github.com/DaveDavenport/rofi for more details -- check https://github.com/DaveDavenport/rofi for more details