Fix examples in readme

- fix missing { } in a couple of the examples.
This commit is contained in:
senorsmile 2016-04-05 22:58:43 -07:00
parent a70eb9178a
commit 6e297105ed
1 changed files with 3 additions and 3 deletions

View File

@ -139,14 +139,14 @@ to change the settings, use:
To exclude the clients, we set: To exclude the clients, we set:
awful.key({modkey}, "e", function() awful.key({modkey}, "e", function()
revelation(rule={class="conky"}, is_excluded=true) revelation({rule={class="conky"}, is_excluded=true})
end) end)
To set only collect clients from current tag To set only collect clients from current tag
awful.key({modkey}, "e", function() awful.key({modkey}, "e", function()
revelation(rule={class="conky"}, is_excluded=true, revelation({rule={class="conky"}, is_excluded=true,
curr_tag_only=true) curr_tag_only=true})
end) end)
## Credits ## Credits