i3-companion: also display window type on window info

This commit is contained in:
Vincent Bernat 2021-07-07 23:12:57 +02:00
parent 9196497e6c
commit 3909defef4

View file

@ -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}",