diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-11-01 07:43:18 +0100 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-11-01 07:43:18 +0100 |
commit | cad84bdf1518c173d76fd0de04ace22eb886821a (patch) | |
tree | 5fca7a6c0b7cf81c19b8affca3c1a127dbfa673e /Main.hs-boot | |
parent | 2c21308fc9cafa27ab95b38bd3712f5b7939fa37 (diff) | |
download | xmonad-cad84bdf1518c173d76fd0de04ace22eb886821a.tar.gz xmonad-cad84bdf1518c173d76fd0de04ace22eb886821a.tar.xz xmonad-cad84bdf1518c173d76fd0de04ace22eb886821a.zip |
This is a massive update, here's what has changed:
* 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
darcs-hash:20071101064318-a5988-c07c434c7a1108078d6123a4b36040ed6597772b.gz
Diffstat (limited to 'Main.hs-boot')
-rw-r--r-- | Main.hs-boot | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Main.hs-boot b/Main.hs-boot index becb178..1ad5791 100644 --- a/Main.hs-boot +++ b/Main.hs-boot @@ -4,4 +4,3 @@ import XMonad numlockMask :: KeyMask workspaces :: [WorkspaceId] manageHook :: Window -> String -> String -> String -> X (WindowSet -> WindowSet) -serialisedLayouts :: [Layout Window] |