Eliminate defaultTerminal

This commit is contained in:
Spencer Janssen
2007-11-01 07:31:47 +00:00
parent e50927ffc0
commit 8a8c538c23
3 changed files with 3 additions and 5 deletions

View File

@@ -50,7 +50,6 @@ data XState = XState
data XConf = XConf
{ display :: Display -- ^ the X11 display
, config :: !XConfig -- ^ initial user configuration
, terminal :: !String -- ^ the user's preferred terminal
, theRoot :: !Window -- ^ the root window
, normalBorder :: !Pixel -- ^ border color of unfocused windows
, focusedBorder :: !Pixel } -- ^ border color of the focused window
@@ -59,7 +58,7 @@ data XConf = XConf
data XConfig = forall l. (LayoutClass l Window, Read (l Window)) =>
XConfig { normalBorderColor :: !String
, focusedBorderColor :: !String
, defaultTerminal :: !String
, terminal :: !String
, layoutHook :: !(l Window)
, workspaces :: ![String]
, defaultGaps :: ![(Int,Int,Int,Int)]