Skipping minimized windows

Hi, I currently use the following commands to hide windows temporarily: , ((modMask .|. shiftMask, xK_y ), withLastMinimized maximizeWindowAndFocus) , ((controlMask .|. shiftMask, xK_y ), withFocused minimizeWindow) Unfortunately, when I switch focus from window to window, focus still moves to the minimized windows. Meaning that I need to switch through several invisible windows to get to the visible ones. -- Move focus to the next window , ((modMask, xK_k ), windows W.focusDown) -- Move focus to the previous window , ((modMask, xK_j ), windows W.focusUp) Is there a way to modify this so that it skips minimized windows? Thank you, -- There are 10 types of people, those who know binary and those who don't.

You may want XMonad.Layout.BoringWindows.boringAuto.
On Mon, Dec 16, 2024 at 4:56 AM Eyal Erez
Hi,
I currently use the following commands to hide windows temporarily:
, ((modMask .|. shiftMask, xK_y ), withLastMinimized maximizeWindowAndFocus) , ((controlMask .|. shiftMask, xK_y ), withFocused minimizeWindow)
Unfortunately, when I switch focus from window to window, focus still moves to the minimized windows. Meaning that I need to switch through several invisible windows to get to the visible ones.
-- Move focus to the next window , ((modMask, xK_k ), windows W.focusDown) -- Move focus to the previous window , ((modMask, xK_j ), windows W.focusUp)
Is there a way to modify this so that it skips minimized windows?
Thank you, -- There are 10 types of people, those who know binary and those who don't.
_______________________________________________ xmonad mailing list xmonad@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/xmonad
-- brandon s allbery kf8nh allbery.b@gmail.com
participants (2)
-
Brandon Allbery
-
Eyal Erez