summaryrefslogtreecommitdiffstats
path: root/XMonad.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad.hs')
-rw-r--r--XMonad.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad.hs b/XMonad.hs
index 853fdeb..d1eff38 100644
--- a/XMonad.hs
+++ b/XMonad.hs
@@ -58,10 +58,10 @@ data XConf = XConf
type WindowSet = StackSet WorkspaceId Window ScreenId
-- | Virtual workspace indicies
-newtype WorkspaceId = W Int deriving (Eq,Ord,Show,Enum,Num,Integral,Real)
+newtype WorkspaceId = W Int deriving (Eq,Ord,Show,Read,Enum,Num,Integral,Real)
-- | Physical screen indicies
-newtype ScreenId = S Int deriving (Eq,Ord,Show,Enum,Num,Integral,Real)
+newtype ScreenId = S Int deriving (Eq,Ord,Show,Read,Enum,Num,Integral,Real)
------------------------------------------------------------------------