[XMonad] Disable boringWindows

This commit is contained in:
Ivan Malison 2016-11-10 13:41:26 -08:00
parent 4e76aa048a
commit 1067bbb0b6
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -88,8 +88,10 @@ layouts = multiCol [1, 1] 2 0.01 (-0.5) ||| Full |||
Tall 1 (3/100) (1/2) ||| magicFocus (Tall 1 (3/100) (3/4)) |||
limitWindows 2 (Tall 1 (3/100) (1/2))
myLayoutHook = avoidStruts . smartSpacing 10 . minimize . boringAuto .
boringWindows . mkToggle (MIRROR ?? EOT) . workspaceNamesHook .
myLayoutHook = avoidStruts . smartSpacing 10 . minimize .
-- TODO: boring windows does not seem to work
-- boringAuto . boringWindows .
mkToggle (MIRROR ?? EOT) . workspaceNamesHook .
smartBorders . noBorders $ layouts
-- WindowBringer
@ -253,6 +255,12 @@ addKeys conf@XConfig {modMask = modm} =
, ((modm .|. shiftMask, xK_m), restoreAllMinimized)
, ((modm, xK_backslash), toggleWS)
-- TODO: there seems to be a bug with these bindings
-- -- Rebind these for boringWindows
-- , ((modm, xK_j), focusUp)
-- , ((modm, xK_k), focusDown)
-- , ((modm, xK_m), focusMaster)
-- Hyper bindings
, ((mod3Mask, xK_1), toggleFadingForActiveWindow)
, ((mod3Mask, xK_e), moveTo Next EmptyWS)