From 21906afb5db443de0c82013576f441d1ced93fb7 Mon Sep 17 00:00:00 2001 From: Sudo Nice Date: Fri, 3 Feb 2017 18:47:21 +0300 Subject: [PATCH] doc: reflect the actual way to get client object --- docs/17-porting-tips.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/17-porting-tips.md b/docs/17-porting-tips.md index 500fb4328..c391a0aad 100644 --- a/docs/17-porting-tips.md +++ b/docs/17-porting-tips.md @@ -354,4 +354,11 @@ now access tags by name. - -- properties = { tag = tags[1][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