Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   xmonad $ desktopConfig -- Extends desktopConfig from xmonad
  2.     { terminal = myTerminal
  3.     , workspaces = myWorkspaces
  4.     , focusedBorderColor = myFocusedBorderColor
  5.     , normalBorderColor = myNormalBorderColor
  6.     , borderWidth = 3
  7.     , modMask    = mod4Mask -- Use the "Win" key for the mod key
  8.     , manageHook = myManageHook <+> manageHook desktopConfig
  9.     , layoutHook = desktopLayoutModifiers $ myLayouts
  10.     , startupHook = startupHook desktopConfig <+> myStartupHook
  11.     , logHook = dynamicLogWithPP (myLogHook dbus) <+> raiseHook
  12.     , handleEventHook =  handleEventHook desktopConfig <+> ewmhDesktopsEventHook <+> propertyNotifyHook (logHook desktopConfig)
  13.     }
  14.     `additionalKeysP` myKeys
  15.     `removeKeysP` [("M-<Space>")] -- Reserve for changing fcitx input methods
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement