
On Thu, Jul 3, 2014 at 7:44 AM, Joachim Breitner
1 patch for repository http://code.haskell.org/xmonad:
Thu Jul 3 07:43:59 CEST 2014 Joey Hess
* needs update for mplayer2 xmonad floats mplayer by default. However, Debian has switched to mplayer2, and so on upgrade, it will stop floating. This can be easily fixed in the user's config file, but here is a patch that avoids bothering the user with breakage on upgrade.
[needs update for mplayer2 Joey Hess
**20140703054359 Ignore-this: 9a17f371a79b5d656473dedfc4b85c85 xmonad floats mplayer by default. However, Debian has switched to mplayer2, and so on upgrade, it will stop floating. This can be easily fixed in the user's config file, but here is a patch that avoids bothering the user with breakage on upgrade. ] hunk ./src/XMonad/Config.hs 95 manageHook :: ManageHook manageHook = composeAll [ className =? "MPlayer" --> doFloat + , className =? "mplayer2" --> doFloat , className =? "Gimp" --> doFloat ]
I guess "mpv" should also be in there.