summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-11-01 08:31:47 +0100
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-11-01 08:31:47 +0100
commitb6c1dfc021f3be6e3de0c4a858a7326bdc7bbef7 (patch)
treeaa71d062d14a44114544139c5a0071574cd2806d
parentb7e7fa2399db8c05fdcf0edf9189dfefaa904cef (diff)
downloadmetatile-b6c1dfc021f3be6e3de0c4a858a7326bdc7bbef7.tar
metatile-b6c1dfc021f3be6e3de0c4a858a7326bdc7bbef7.zip
Eliminate defaultTerminal
darcs-hash:20071101073147-a5988-9c2da610e085026e3a1b981114b116718331273c
-rw-r--r--EventLoop.hs1
-rw-r--r--Main.hs4
-rw-r--r--XMonad.hs3
3 files changed, 3 insertions, 5 deletions
diff --git a/EventLoop.hs b/EventLoop.hs
index 719edb0..b01036a 100644
--- a/EventLoop.hs
+++ b/EventLoop.hs
@@ -68,7 +68,6 @@ makeMain xmc = do
cf = XConf
{ display = dpy
, config = xmc
- , terminal = defaultTerminal xmc
, theRoot = rootw
, normalBorder = nbc
, focusedBorder = fbc }
diff --git a/Main.hs b/Main.hs
index 05cad2d..b249431 100644
--- a/Main.hs
+++ b/Main.hs
@@ -157,7 +157,7 @@ layout = tiled ||| Mirror tiled ||| Full
keys :: M.Map (KeyMask, KeySym) (X ())
keys = M.fromList $
-- launching and killing programs
- [ ((modMask .|. shiftMask, xK_Return), asks terminal >>= spawn) -- %! Launch terminal
+ [ ((modMask .|. shiftMask, xK_Return), asks (terminal . config) >>= spawn) -- %! Launch terminal
, ((modMask, xK_p ), spawn "exe=`dmenu_path | dmenu` && eval \"exec $exe\"") -- %! Launch dmenu
, ((modMask .|. shiftMask, xK_p ), spawn "gmrun") -- %! Launch gmrun
, ((modMask .|. shiftMask, xK_c ), kill) -- %! Close the focused window
@@ -241,7 +241,7 @@ defaultConfig = XConfig { borderWidth = 1 -- Width of the window border in pixel
-- transformers, for example, would be hooked in here.
--
, layoutHook = layout
- , defaultTerminal = "xterm" -- The preferred terminal program.
+ , terminal = "xterm" -- The preferred terminal program.
, normalBorderColor = "#dddddd" -- Border color for unfocused windows.
, focusedBorderColor = "#ff0000" -- Border color for focused windows.
, XMonad.keys = Main.keys
diff --git a/XMonad.hs b/XMonad.hs
index b30b5a9..e21b726 100644
--- a/XMonad.hs
+++ b/XMonad.hs
@@ -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)]