From 922d01be60ab0e8bc21f2930f044f5dd24e77abf Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 13 Oct 2017 22:10:00 -0700 Subject: [PATCH] [XMonad] Gather should unminimize --- dotfiles/config/xmonad/xmonad.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/config/xmonad/xmonad.hs b/dotfiles/config/xmonad/xmonad.hs index 06773aea..a33f4c95 100644 --- a/dotfiles/config/xmonad/xmonad.hs +++ b/dotfiles/config/xmonad/xmonad.hs @@ -730,7 +730,7 @@ windowsMatchingClass klass = allWindows >>= filterM (((== klass) <$>) . getClass) gatherClass klass = restoreFocus $ - windowsMatchingClass klass >>= mapM_ (windows . bringWindow) + windowsMatchingClass klass >>= mapM_ doBringWindow gatherThisClass = thisClass >>= flip whenJust gatherClass