mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-19 08:30:21 -07:00
* Read is no longer a superclass of Layout * All of the core layouts have moved to the new Layouts.hs module * Select has been replaced by the new statically typed Choose combinator, which is heavily based on David Roundy's NewSelect proposal for XMonadContrib. Consequently: - Rather than a list of choosable layouts, we use the ||| combinator to combine several layouts into a single switchable layout - We've lost the capability to JumpToLayout and PrevLayout. Both can be added with some effort
7 lines
206 B
Haskell
7 lines
206 B
Haskell
module Main where
|
|
import Graphics.X11.Xlib (KeyMask,Window)
|
|
import XMonad
|
|
numlockMask :: KeyMask
|
|
workspaces :: [WorkspaceId]
|
|
manageHook :: Window -> String -> String -> String -> X (WindowSet -> WindowSet)
|