all repos — openbox @ 6dfc3c726a2164ba70cfac3df436ee035822bdb1

openbox fork - make it a bit more like ryudo

don't skip windows that are skip_taskbar unless they are normal typed.. i.e. if a dialog sets this don't skip it (gnome shutdown/logout dialogs don't get focused otherwise in arch linux)
Dana Jansens danakj@orodu.net
commit

6dfc3c726a2164ba70cfac3df436ee035822bdb1

parent

5148b839fefe16b54f26bc0d2c7a500127cf2725

2 files changed, 5 insertions(+), 7 deletions(-)

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

@@ -450,6 +450,8 @@

g_free(monitor); monitor = NULL; + ob_debug_type(OB_DEBUG_FOCUS, "Going to try activate new window? %s\n", + activate ? "yes" : "no"); if (activate) { gboolean raise = FALSE;
M openbox/focus.copenbox/focus.c

@@ -337,13 +337,9 @@ /* ... or if there are no other windows in its group

that can be focused instead */ !focus_target_has_siblings(ft, iconic_windows, all_desktops)))); - /* it's not set to skip the taskbar (unless it is a type that would be - expected to set this hint, or modal) */ - ok = ok && ((ft->type == OB_CLIENT_TYPE_DOCK || - ft->type == OB_CLIENT_TYPE_DESKTOP || - ft->type == OB_CLIENT_TYPE_TOOLBAR || - ft->type == OB_CLIENT_TYPE_MENU || - ft->type == OB_CLIENT_TYPE_UTILITY) || + /* it's not set to skip the taskbar (but this only applies to normal typed + windows, and is overridden if the window is modal) */ + ok = ok && (ft->type != OB_CLIENT_TYPE_NORMAL || ft->modal || !ft->skip_taskbar);