From cec7035fce156f8016aeb5c159ed29d9ddcd9b7f Mon Sep 17 00:00:00 2001 From: Alexander Gehrke Date: Mon, 24 Feb 2020 10:24:48 +0100 Subject: [PATCH] Add instance to client info on mod+i --- separable/binder.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/separable/binder.lua b/separable/binder.lua index 93a97dc..8c92ae2 100644 --- a/separable/binder.lua +++ b/separable/binder.lua @@ -192,7 +192,9 @@ awful.key({ modkey, }, "Down", function(c) client_opacity_set(c, 1, awful.key({ }, "XF86Calculater", awful.client.movetoscreen ), awful.key({ modkey }, "i", function(c) require("naughty").notify({ text = - string.format("name: %s\nclass: %s\ntype: %s", c["name"], c["class"], c["type"]) + string.format( + "name: %s\nclass: %s\ninstance: %s\ntype: %s", + c["name"], c["class"], c["instance"], c["type"]) }) end) )