mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-07-31 20:21:51 -07:00
Replace <+> with <>
This commit is contained in:
@@ -78,9 +78,9 @@ fullscreenSupport :: LayoutClass l Window =>
|
||||
XConfig l -> XConfig (ModifiedLayout FullscreenFull l)
|
||||
fullscreenSupport c = c {
|
||||
layoutHook = fullscreenFull $ layoutHook c,
|
||||
handleEventHook = handleEventHook c <+> fullscreenEventHook,
|
||||
manageHook = manageHook c <+> fullscreenManageHook,
|
||||
startupHook = startupHook c <+> fullscreenStartup
|
||||
handleEventHook = handleEventHook c <> fullscreenEventHook,
|
||||
manageHook = manageHook c <> fullscreenManageHook,
|
||||
startupHook = startupHook c <> fullscreenStartup
|
||||
}
|
||||
|
||||
-- | fullscreenSupport with smartBorders support so the border doesn't
|
||||
|
@@ -73,7 +73,7 @@ import qualified Data.Set as Set
|
||||
-- To make XMonad reflect changes in window hints immediately, add
|
||||
-- 'hintsEventHook' to your 'handleEventHook'.
|
||||
--
|
||||
-- > myHandleEventHook = hintsEventHook <+> ...
|
||||
-- > myHandleEventHook = hintsEventHook <> ...
|
||||
-- >
|
||||
-- > main = xmonad def { handleEventHook = myHandleEventHook
|
||||
-- > , ... }
|
||||
|
@@ -73,7 +73,7 @@ import XMonad.Hooks.FadeInactive (setOpacity)
|
||||
--
|
||||
-- Add ManageHook to de-manage monitor windows and apply opacity settings.
|
||||
--
|
||||
-- > manageHook = myManageHook <+> manageMonitor clock
|
||||
-- > manageHook = myManageHook <> manageMonitor clock
|
||||
--
|
||||
-- Apply layout modifier.
|
||||
--
|
||||
|
Reference in New Issue
Block a user