mirror of
https://github.com/xmonad/xmonad.git
synced 2025-07-31 20:21:52 -07:00
11 lines
331 B
Haskell
11 lines
331 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 :: [Layout Window]
|
|
manageHook :: Window -> String -> String -> String -> X (WindowSet -> WindowSet)
|