~ruther/dwl

c88960751d7e422ad7eca1672c00ee09515e5095 — Leonardo Hernández Hernández 1 year, 4 months ago 9c5bdcf
check if a client is unmanaged checking the o-r flag

it may change at any moment and I don't really want to add a listener for it
1 files changed, 2 insertions(+), 1 deletions(-)

M client.h
M client.h => client.h +2 -1
@@ 270,7 270,8 @@ static inline int
client_is_unmanaged(Client *c)
{
#ifdef XWAYLAND
	return c->type == X11Unmanaged;
	if (client_is_x11(c))
		return c->surface.xwayland->override_redirect;
#endif
	return 0;
}

Do not follow this link