doc: reflect the actual way to get client object

This commit is contained in:
Sudo Nice 2017-02-03 18:47:21 +03:00
parent aaea976108
commit 21906afb5d
1 changed files with 7 additions and 0 deletions

View File

@ -354,4 +354,11 @@ now access tags by name.
- -- properties = { tag = tags[1][2] } }, - -- properties = { tag = tags[1][2] } },
+ -- properties = { screen = 1, tag = "2" } }, + -- properties = { screen = 1, tag = "2" } },
If you need to get the current client object in global context, currently you can use
`client.focus` for it. E.g., to mark/unmark the client:
- awful.client.mark()
+ client.focus.marked = true
- awful.client.unmark()
+ client.focus.marked = false