Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- xmonad $ desktopConfig -- Extends desktopConfig from xmonad
- { terminal = myTerminal
- , workspaces = myWorkspaces
- , focusedBorderColor = myFocusedBorderColor
- , normalBorderColor = myNormalBorderColor
- , borderWidth = 3
- , modMask = mod4Mask -- Use the "Win" key for the mod key
- , manageHook = myManageHook <+> manageHook desktopConfig
- , layoutHook = desktopLayoutModifiers $ myLayouts
- , startupHook = startupHook desktopConfig <+> myStartupHook
- , logHook = dynamicLogWithPP (myLogHook dbus) <+> raiseHook
- , handleEventHook = handleEventHook desktopConfig <+> ewmhDesktopsEventHook <+> propertyNotifyHook (logHook desktopConfig)
- }
- `additionalKeysP` myKeys
- `removeKeysP` [("M-<Space>")] -- Reserve for changing fcitx input methods
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement