
12 Jun
2007
12 Jun
'07
5:37 a.m.
On Tue, Jun 12, 2007 at 12:19:33PM +0300, Avi Rozen wrote:
I got it working by removing the import line and moving the declaration of commands to Config.hs:
commands :: [(String, X ())] commands = defaultCommands
Seems to work fine, but is this the right thing to do?
in Config.hs-boot import XMonad is already present. It's enough if you just add: workspaces :: Int commands :: [(String, X ())] here you can have a better understanding of what hs-boot files are needed for: http://haskell.org/ghc/docs/6.6/html/users_guide/separate-compilation.html#m... ciao andrea