aboutsummaryrefslogtreecommitdiffstats
path: root/Commands.hs
diff options
context:
space:
mode:
authorDon Stewart <dons@galois.com>2007-10-14 01:00:40 +0200
committerDon Stewart <dons@galois.com>2007-10-14 01:00:40 +0200
commitbb5930d3c9c5d393cd9ee1554209581f71b493ea (patch)
treec33ea24a5a0d20c23ef8f96dd72fbf1bbb8c300e /Commands.hs
parent0a5ad1ca981dd5cd4bed68715415fc89c054af13 (diff)
downloadXMonadContrib-bb5930d3c9c5d393cd9ee1554209581f71b493ea.tar.gz
XMonadContrib-bb5930d3c9c5d393cd9ee1554209581f71b493ea.tar.xz
XMonadContrib-bb5930d3c9c5d393cd9ee1554209581f71b493ea.zip
serialisedLayouts
darcs-hash:20071013230040-cba2c-a54c6f9daa3784c741ea0d64888d9c39172b8307.gz
Diffstat (limited to '')
-rw-r--r--Commands.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Commands.hs b/Commands.hs
index ccb8c55..26e3cab 100644
--- a/Commands.hs
+++ b/Commands.hs
@@ -29,7 +29,7 @@ import XMonad
import Operations
import StackSet hiding (workspaces)
import XMonadContrib.Dmenu (dmenu)
-import {-# SOURCE #-} Config (workspaces,possibleLayouts)
+import {-# SOURCE #-} Config (workspaces,serialisedLayouts)
import qualified Data.Map as M
import System.Exit
@@ -81,7 +81,7 @@ defaultCommands = workspaceCommands ++ screenCommands
, ("expand" , sendMessage Expand )
, ("next-layout" , sendMessage NextLayout )
, ("previous-layout" , sendMessage PrevLayout )
- , ("default-layout" , setLayout (head possibleLayouts) )
+ , ("default-layout" , setLayout (head serialisedLayouts) )
, ("restart-wm" , sr >> restart Nothing True )
, ("restart-wm-no-resume", sr >> restart Nothing False )
, ("xterm" , spawn "xterm" )