HaskellWiki

Haskell | Wiki community | Recent changes
Random page | Special pages

 

Not logged in
Log in | Help

Request an account if you don't have one.

Xmonad/Notable changes since 0.9

< Xmonad

Categories: XMonad

This page is for keeping a record of significant changes in darcs xmonad and xmonad-contrib since the 0.9 release. See 'darcs changes' for more details about miscellaneous feature enhancements, and documentation and bug fixes not noted here.

The idea is to put here a list of things which a user upgrading from 0.9 to the current darcs version might like to know, so that they are sure to be included in the 1.0 release notes.

Contents


Simplified interface for X.A.SpawnOn and X.H.DynamicHooks

Since contrib modules can now store custom state in XState, the additional IORef parameters are no longer required: Users have to remove the first paramter to the respective functions. The functions mkSpawner and initDynamicHooks are also no longer necessary and have been removed.

Example:
-- Old code:

sp <- mkSpawner
..
 [((mod1Mask,xK_k), shellPromptHere sp defaultXPConfig
  ..]

The above has to be changed to:

 -- no mkSpawner line
 ..
 [((mod1Mask,xK_k), shellPromptHere defaultXPConfig)
  ..]

The same applies to XMonad.Hooks.DynamicHooks.

Retrieved from "http://haskell.cs.yale.edu/haskellwiki/Xmonad/Notable_changes_since_0.9"

This page has been accessed 99 times. This page was last modified 23:37, 16 November 2009. Recent content is available under a simple permissive license.