all repos — openbox @ 40bfb2b6e5249608f6f7d0c8012ca44f67883843

openbox fork - make it a bit more like ryudo

only cycle focus to normal windows
Dana Jansens danakj@orodu.net
commit

40bfb2b6e5249608f6f7d0c8012ca44f67883843

parent

bd5d44169661ba0345e216eea35f157bf3f02530

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

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

@@ -248,7 +248,8 @@ it = it->prev;

if (it == NULL) it = g_list_last(list); } ft = client_focus_target(it->data); - if (ft == it->data && focus_client != ft && client_focusable(ft)) { + if (ft == it->data && focus_client != ft && client_normal(ft) && + client_focusable(ft)) { if (client_focus(ft)) { noreorder++; /* avoid reordering the focus_order */ return ft;