XMonad.Actions.UpdateFocus doesn't work

Hi, documentation for XMonad.Actions.UpdateFocus says it "Updates the focus on mouse move in unfocused windows." However, for me (using Ubuntu 16.04, xmonad installed from Ubuntu repository), it doesn't seem to have any effect. Here is my minimal xmonad.hs: import XMonad import XMonad.Actions.UpdateFocus main = xmonad $ defaultConfig { focusFollowsMouse = True, startupHook = adjustEventInput, handleEventHook = focusOnMouseMove } Any idea what's wrong? Cheers, Kilian

On Fri, Sep 1, 2017 at 4:57 PM, Kilian Evang
Any idea what's wrong?
I'd have to review xmonad's setup code to be certain, but I think the startupHook no longer works. Instead, the mask changes it makes need to be exported and applied to the rootMask and clientMask fields of the XConfig. File a bug on the xmonad-contrib issue tracker, please, referencing this message from the list archives. -- brandon s allbery kf8nh sine nomine associates allbery.b@gmail.com ballbery@sinenomine.net unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net
participants (2)
-
Brandon Allbery
-
Kilian Evang