[xmonad] Re: Issue 396 in xmonad: Qt (and KDE) don't display menu if not on first display

codesite-noreply at google.com codesite-noreply at google.com
Thu Nov 18 13:17:52 EST 2010


Comment #6 on issue 396 by nwfilardo: Qt (and KDE) don't display menu if  
not on first display
http://code.google.com/p/xmonad/issues/detail?id=396

Some of KDE's windows -- though I don't remember if menus qualified  
(ultimately I gave up on running KDE) -- needed special handling.  This may  
help or it may be barking up the wrong tree.  My config had

import qualified XMonad.Hooks.ManageHelpers as HMH

isKDEOverride = do
     isover <-  
HMH.isInProperty "_NET_WM_WINDOW_TYPE" "_KDE_NET_WM_WINDOW_TYPE_OVERRIDE"
     isfs <- HMH.isFullscreen
     return $! isover && (not isfs)

myManageHook = composeAll . concat $
        [ [ HMH.composeOne [ isKDEOverride HMH.-?> doFloat ] ]
        , -- ...
        ]



More information about the xmonad mailing list