
I tried this - and it used to work - but adding it to the configs for managedocks has proven tricky. I'm...well, completely bewildered by the config file. for reference, here's what I've got, cobbled together from other people's...but it doesn't work. import XMonad import XMonad.Hooks.ManageDocks import XMonad.Hooks.EwmhDesktops import XMonad.Hooks.UrgencyHook import XMonad.Actions.CycleWS main = do xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig { manageHook = manageHook defaultConfig <+> myManageHook , terminal = "konsole" , focusedBorderColor = "blue" , logHook = ewmhDesktopsLogHook , layoutHook = avoidStruts $ layoutHook defaultConfig } where myManageHook = composeAll . concat $ [ [manageDocks] , [ resource =? "Do.exe" --> doIgnore ] ] Asumu Takikawa wrote:
Late response and I guess you've ditched Do, but maybe someone will find it useful. I got Gnome Do working with this snippet in the management hook:
, resource =? "Do" --> doIgnore
It works fine for me. I bound it to mod+d and it pops up and the arrows seem to work. It disappears when I focus on a different window.
Cheers, Asumu Takikawa
On 20:01 Tue 27 May , Magnus Therning wrote:
Under Xmonad the drop-downs are unresponsive to up and down keys. They won't even go away when choosing something with the mouse. The only way I've found is to click the little triangle in the top-right corner and choose "Exit".
I ended up removing GnomeDo altogether, IMNSHO it's simply too broken to be used.
/M
-- Magnus Therning (OpenPGP: 0xAB4DFBA4) magnus@therning.org Jabber: magnus.therning@gmail.com http://therning.org/magnus
xmonad mailing list xmonad@haskell.org http://www.haskell.org/mailman/listinfo/xmonad