From oneself at gmail.com Mon Dec 16 09:55:43 2024 From: oneself at gmail.com (Eyal Erez) Date: Mon, 16 Dec 2024 11:55:43 +0200 Subject: [xmonad] Skipping minimized windows Message-ID: 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From allbery.b at gmail.com Mon Dec 16 10:22:25 2024 From: allbery.b at gmail.com (Brandon Allbery) Date: Mon, 16 Dec 2024 05:22:25 -0500 Subject: [xmonad] Skipping minimized windows In-Reply-To: References: Message-ID: You may want XMonad.Layout.BoringWindows.boringAuto. On Mon, Dec 16, 2024 at 4:56 AM Eyal Erez wrote: > 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 at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/xmonad > -- brandon s allbery kf8nh allbery.b at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: