diff --git a/users/modules/window_manager/xmonad_config.hs b/users/modules/window_manager/xmonad_config.hs index f66d63c..a6eb0bc 100644 --- a/users/modules/window_manager/xmonad_config.hs +++ b/users/modules/window_manager/xmonad_config.hs @@ -241,6 +241,7 @@ myManageHook = manageApps where role = stringProperty "WM_WINDOW_ROLE" isPopup = role =? "pop-up" + isPinentry = anyOf [className =? "Gcr-promter", className =? "Pinentry"] anyOf :: [Query Bool] -> Query Bool anyOf = foldl (<||>) (pure False) tileBelow = insertPosition Below Newer @@ -262,7 +263,7 @@ myManageHook = manageApps anyOf [ isPopup, isDialog, - className =? "Gcr-prompter" + isPinentry ] -?> doCenterFloat, pure True -?> tileBelow