Skip to content

Commit

Permalink
fixed xmonad slowdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
l29ah committed Feb 21, 2018
1 parent 85a1035 commit 1586800
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xmonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ readProcessWithExitCode' cmd args input = do
return (ex, out, err)
--}}}
--{{{ Main config
main = let conf = ignoreNetActiveWindow (return True) $ ewmh $ withUrgencyHookC (\w -> do
main = let conf = ignoreNetActiveWindow (return True) $ withUrgencyHookC (\w -> do
borderUrgencyHook "#ffff00" w
spawnUrgencyHook "urge " w)
(UrgencyConfig {
Expand All @@ -376,9 +376,9 @@ main = let conf = ignoreNetActiveWindow (return True) $ ewmh $ withUrgencyHookC
, mouseBindings = myMouseBindings
, layoutHook = myLayout
, manageHook = myManageHook
, handleEventHook = perWindowKbdLayout
, logHook = myLogHook
, startupHook = disableAutoRepeat >> setWMName "LG3D"
, handleEventHook = perWindowKbdLayout <+> ewmhDesktopsEventHook -- full ewmh disabled due to https://github.com/xmonad/xmonad-contrib/issues/227
, startupHook = disableAutoRepeat >> setWMName "LG3D" >> ewmhDesktopsStartup
} in
xmonad $ conf
--}}}
Expand Down

0 comments on commit 1586800

Please sign in to comment.