From 6ecbc80109cd0136518cddb23bf26f057a39308d Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 28 Mar 2022 10:51:02 -0600 Subject: Move Intercept to RebindKeys. Remove the intercept subsystem as it was experimental and I do not have a real use for it anymore. --- src/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Main.hs') diff --git a/src/Main.hs b/src/Main.hs index 379131c..b17f62a 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -16,7 +16,7 @@ import Internal.Keys import Internal.Layout import Internal.Logger import Internal.DMenu (menuCommandString) -import Internal.Intercept +import Internal.RebindKeys import XMonad.Actions.WithAll (withAll) import qualified XMonad as X @@ -70,7 +70,7 @@ main = do ] , workspaces = map return (['0'..'9'] ++ ['a'..'z']) , handleEventHook = - composeAll [fullscreenEventHook, interceptHook, remapHook] + composeAll [fullscreenEventHook, remapHook] , focusFollowsMouse = False , clickJustFocuses = False , logHook = xMobarLogHook xmobar -- cgit