diff options
author | David Roundy <droundy@darcs.net> | 2007-08-20 13:36:58 +0200 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2007-08-20 13:36:58 +0200 |
commit | a8f08efc150a0062125c89f423b3c9c572f9ce36 (patch) | |
tree | 4456651582bf01cf1858f15dd8ed75650961dac8 | |
parent | 7212622c6e2e5f5f6e423e054cf6a666e2e69dc3 (diff) | |
download | xmonad-a8f08efc150a0062125c89f423b3c9c572f9ce36.tar.gz xmonad-a8f08efc150a0062125c89f423b3c9c572f9ce36.tar.xz xmonad-a8f08efc150a0062125c89f423b3c9c572f9ce36.zip |
switch WorkspaceId to String.
darcs-hash:20070820113658-72aca-f27e89526a320a9426a359cd88a4a74567283417.gz
-rw-r--r-- | Config.hs | 2 | ||||
-rw-r--r-- | XMonad.hs | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -33,7 +33,7 @@ import Graphics.X11.Xlib -- The number of workspaces (virtual screens, or window groups) -- workspaces :: [WorkspaceId] -workspaces = [0..8] +workspaces = map (:"") ['1'..'9'] -- | -- modMask lets you specify which modkey you want to use. The default is @@ -15,7 +15,7 @@ ----------------------------------------------------------------------------- module XMonad ( - X, WindowSet, WorkspaceId(..), ScreenId(..), ScreenDetail(..), XState(..), XConf(..), Layout(..), + X, WindowSet, WorkspaceId, ScreenId(..), ScreenDetail(..), XState(..), XConf(..), Layout(..), Typeable, Message, SomeMessage(..), fromMessage, runLayout, runX, catchX, io, catchIO, withDisplay, withWindowSet, isRoot, spawn, restart, trace, whenJust, whenX, atom_WM_STATE, atom_WM_PROTOCOLS, atom_WM_DELETE_WINDOW @@ -55,7 +55,7 @@ data XConf = XConf type WindowSet = StackSet WorkspaceId Window ScreenId ScreenDetail -- | Virtual workspace indicies -newtype WorkspaceId = W Int deriving (Eq,Ord,Show,Read,Enum,Num,Integral,Real) +type WorkspaceId = String -- | Physical screen indicies newtype ScreenId = S Int deriving (Eq,Ord,Show,Read,Enum,Num,Integral,Real) |