all repos — fluxbox @ 882a50fe1d4930b156965c54d9b66ecb27b4c9b2

custom fork of the fluxbox windowmanager

removed hardcoded limitation to cycle/focus windows on all workspaces

reasons:

* fixes #1732115, allows to have chatwindows on another workspaces and reach them via :NextWindow (urgent=yes)
* old behavior can be achieve by using the (workspace=[current]) pattern
Mathias Gumz akira at fluxbox dot org
commit

882a50fe1d4930b156965c54d9b66ecb27b4c9b2

parent

8a7c1171538ba97083a49399f8a7fdc4524f385f

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

jump to
M src/FocusControl.ccsrc/FocusControl.cc

@@ -56,9 +56,7 @@ if (!fbwin || fbwin->isFocusHidden())

return true; // skip if no fbwindow or if focushidden if (pat && !pat->match(win)) return true; // skip if it doesn't match the pattern - if (fbwin->workspaceNumber() != win.screen().currentWorkspaceID() && - !fbwin->isStuck()) - return true; // for now, we only cycle through the current workspace + return false; // else don't skip }