diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-05-21 21:07:04 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-05-21 21:07:04 +0200 |
commit | c552ce2fd00d9039e67790bd2e4d86556c0a7c40 (patch) | |
tree | 6467ad5628382efafb0c00eb18fef51598974bf7 | |
parent | 6572e2115b8ded3616bb11434eada7d8a97cc877 (diff) | |
download | xmonad-c552ce2fd00d9039e67790bd2e4d86556c0a7c40.tar.gz xmonad-c552ce2fd00d9039e67790bd2e4d86556c0a7c40.tar.xz xmonad-c552ce2fd00d9039e67790bd2e4d86556c0a7c40.zip |
Show instances for WorkspaceId and ScreenId
darcs-hash:20070521190704-a5988-24dfb3b96a551ee2a27c9dd09461ddd260db8e64.gz
-rw-r--r-- | XMonad.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) ------------------------------------------------------------------------ |