Remove a redundant comma which causes a syntax error

This commit is contained in:
Daniel Vartanov 2019-01-13 22:19:22 +00:00 committed by Stefano Mazzucco
parent 2fd68904bd
commit fbb711bac3
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ awful.util.table.join(
-- Microphone
awful.key({"Shift"}, "XF86AudioRaiseVolume", pulse.volume_up_mic),
awful.key({"Shift"}, "XF86AudioLowerVolume", pulse.volume_down_mic),
awful.key({ }, "XF86MicMute", pulse.toggle_muted_mic),
awful.key({ }, "XF86MicMute", pulse.toggle_muted_mic)
)
```