fix indendation

This commit is contained in:
BZ 2021-03-05 12:28:19 +01:00
parent 792b0b9480
commit d75a3c61c4
1 changed files with 12 additions and 13 deletions

View File

@ -202,10 +202,9 @@ E.g. you might want add the rightclick menu to your tasklist:
buttons = {
awful.button({}, 1, function(c)
c:activate{context = "tasklist", action = "toggle_minimization"}
end),
awful.button({ }, 3, function(c)
end), awful.button({}, 3, function(c)
c:emit_signal("smart_borders::right_click")
end),
end)
}
}
```