diff options
-rw-r--r-- | gui/conf/xmonad.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index bd05d0f..7a9f7bb 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -265,11 +265,13 @@ customManageHook host = manageMonitor (hudMonitor host) <+> composeOne , isParaviewDialog -?> doRectFloat $ hideScreenBorder host dropDown , isTelegramMediaViewer -?> doFullFloat , isDialog -?> doCenterFloat + , isPrompter -?> doCenterFloat , transience , pure True -?> insertPosition Below Newer <+> namedScratchpadManageHook (scratchpads host) ] where hasRole x = stringProperty "WM_WINDOW_ROLE" =? x isParaviewDialog = (className =? "ParaView") <&&> isDialog + isPrompter = (className =? "Gcr-prompter") isTelegramMediaViewer = (className =? "TelegramDesktop") <&&> (title =? "Media viewer") customLogHook = do |