all repos — openbox @ 0a5ac0c8ef4d921e7774caeddf853ddfd3ef1131

openbox fork - make it a bit more like ryudo

don't place windows over docks. but let them place over menus and toolbars. i guess not utility windows though?
Dana Jansens danakj@orodu.net
commit

0a5ac0c8ef4d921e7774caeddf853ddfd3ef1131

parent

51626b787d04f7476c2c4523900c491a313ae501

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M openbox/place.copenbox/place.c

@@ -268,7 +268,9 @@ SMART_FOCUSED

} ObSmartType; #define SMART_IGNORE(placer, c) \ - (placer == c || c->shaded || !client_normal(c) || !c->frame->visible || \ + (placer == c || c->shaded || !c->frame->visible || \ + c->type == OB_CLIENT_TYPE_SPLASH || c->type == OB_CLIENT_TYPE_DESKTOP || \ + c->type == OB_CLIENT_TYPE_MENU || c->type == OB_CLIENT_TYPE_TOOLBAR || \ (c->desktop != DESKTOP_ALL && \ c->desktop != (placer->desktop == DESKTOP_ALL ? \ screen_desktop : placer->desktop)))