mirror of
https://github.com/xmonad/xmonad.git
synced 2025-08-01 12:41:53 -07:00
11 lines
305 B
Haskell
11 lines
305 B
Haskell
module Config where
|
|
import Graphics.X11.Xlib.Types (Dimension)
|
|
import Graphics.X11.Xlib (KeyMask,Window)
|
|
import XMonad
|
|
borderWidth :: Dimension
|
|
logHook :: X ()
|
|
numlockMask :: KeyMask
|
|
workspaces :: [WorkspaceId]
|
|
possibleLayouts :: [SomeLayout Window]
|
|
manageHook :: Window -> X (WindowSet -> WindowSet)
|