To this:main = xmonad =<< xmobar defaultConfig{ -- no logHook defined-- Other definitions.}This works fine, but now for some reason, Alt-B is bound to ToggleStruts. I would like this to be Ctrl-Shift-B, and I have a key binding which adds the second one, but I can't seem to get rid of the first.How can I unbind Alt-B, and where is it coming from?
xmobar conf = statusBar "xmobar" xmobarPP toggleStrutsKey conf
-- | -- Helper function which provides ToggleStruts keybinding -- toggleStrutsKey :: XConfig t -> (KeyMask, KeySym) toggleStrutsKey XConfig{modMask = modm} = (modm, xK_b )