
Comment #1 on issue 546 by byor...@gmail.com: Suggested improvement to CycleRecentWS for multiple screens http://code.google.com/p/xmonad/issues/detail?id=546 I actually already have something similar to this in my xmonad.hs, defined like this: cycleRecentWS' = cycleWindowSets options where options w = map (W.view `flip` w) (recentTags w) recentTags w = map W.tag $ W.hidden w ++ [W.workspace (W.current w)] Mine actually *excludes* the visible but non-focused workspaces from the cycle. I guess my worry is that there are quite a few different ways to do this sort of thing, and if we change cycleRecentWS it will be what some people want but not others. However, I would be OK with including some variants like the ones above, with names like cycleRecentHiddenWS and so on. -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings