From 3909defef48b058598d9b6f3ddb74bb4004330c9 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 7 Jul 2021 23:12:57 +0200 Subject: [PATCH] i3-companion: also display window type on window info --- bin/i3-companion | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/i3-companion b/bin/i3-companion index 0e59ac5..b30e54a 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -237,6 +237,7 @@ async def window_info(i3, event): "class": w.window_class, "instance": w.window_instance, "role": w.window_role, + "type": w.ipc_data['window_type'], "sticky": w.sticky, "floating": w.floating, "geometry": f"{r.width}×{r.height}+{r.x}+{r.y}",