Sat Mar 21 19:37:36 EDT 2009 Adam Vogt <vogt.adam@gmail.com> * Pester the user with one (not two) xmessages on config errors Sat Mar 21 19:29:07 EDT 2009 Adam Vogt <vogt.adam@gmail.com> * Add lib to ghc searchpath with recompilation check Sun May 3 19:54:15 EDT 2009 Adam Vogt <vogt.adam@gmail.com> * Only watch mtime for .hs, .lhs, .hsc for ~/.xmonad/lib Previously xmonad would force a recompile due to the object files being too new, so only look at files which may contain haskell code. Thu Jul 9 21:13:08 EDT 2009 Adam Vogt <vogt.adam@gmail.com> * Set infix 0 --> to reduce parentheses in ManageHooks What was previously:
(appName ?= x <&&> classname ?= y) --> (doFloat <+> doIgnore)
Can now be:
appName ?= x <&&> classname ?= y --> doFloat <+> doIgnore
Thu Jul 9 21:14:24 EDT 2009 Adam Vogt <vogt.adam@gmail.com> * Remove tabs from ManageHook.hs