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.
This commit is contained in:
Joey Hess
2014-07-03 05:43:59 +00:00
parent d60791e3f5
commit 5f0b1601d5

View File

@@ -92,6 +92,7 @@ focusedBorderColor = "red" -- "#ff0000" don't use hex, not <24 bit safe
manageHook :: ManageHook
manageHook = composeAll
[ className =? "MPlayer" --> doFloat
, className =? "mplayer2" --> doFloat
, className =? "Gimp" --> doFloat ]
------------------------------------------------------------------------