summaryrefslogtreecommitdiffstats
path: root/XMonad/Core.hs
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2008-03-25 10:15:26 +0100
committerSpencer Janssen <sjanssen@cse.unl.edu>2008-03-25 10:15:26 +0100
commitda3761c4919a4a3268b52ffb05331aaca304831c (patch)
tree5f72beed4d71df149799772781bc5cb4aae92a8b /XMonad/Core.hs
parentb1827aa25f5cde0127598fa4bfc3e522b83741c5 (diff)
downloadmetatile-da3761c4919a4a3268b52ffb05331aaca304831c.tar
metatile-da3761c4919a4a3268b52ffb05331aaca304831c.zip
Remove gaps
darcs-hash:20080325091526-a5988-e6ed58b0d493845525a4c7e5977352cfb12b9c92
Diffstat (limited to 'XMonad/Core.hs')
-rw-r--r--XMonad/Core.hs7
1 files changed, 2 insertions, 5 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs
index 397c39a..26f2617 100644
--- a/XMonad/Core.hs
+++ b/XMonad/Core.hs
@@ -79,7 +79,6 @@ data XConfig l = XConfig
, layoutHook :: !(l Window) -- ^ The available layouts
, manageHook :: !ManageHook -- ^ The action to run when a new window is opened
, workspaces :: ![String] -- ^ The list of workspaces' names
- , defaultGaps :: ![(Int,Int,Int,Int)] -- ^ The list of gaps, per screen
, numlockMask :: !KeyMask -- ^ The numlock modifier
, modMask :: !KeyMask -- ^ the mod modifier
, keys :: !(XConfig Layout -> M.Map (ButtonMask,KeySym) (X ()))
@@ -102,10 +101,8 @@ type WorkspaceId = String
-- | Physical screen indices
newtype ScreenId = S Int deriving (Eq,Ord,Show,Read,Enum,Num,Integral,Real)
--- | The 'Rectangle' with screen dimensions and the list of gaps
-data ScreenDetail = SD { screenRect :: !Rectangle
- , statusGap :: !(Int,Int,Int,Int) -- ^ gaps on the sides of the screen that shouldn't be tiled, usually for status bars
- } deriving (Eq,Show, Read)
+-- | The 'Rectangle' with screen dimensions
+data ScreenDetail = SD { screenRect :: !Rectangle } deriving (Eq,Show, Read)
------------------------------------------------------------------------