diff options
Diffstat (limited to 'XMonad.hs')
-rw-r--r-- | XMonad.hs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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)] |