summaryrefslogtreecommitdiffstats
path: root/CONFIG
diff options
context:
space:
mode:
authorValery V. Vorotyntsev <valery.vv@gmail.com>2007-11-15 15:41:51 +0100
committerValery V. Vorotyntsev <valery.vv@gmail.com>2007-11-15 15:41:51 +0100
commit274b5623b41751eb6298b8786f640b5799ba9b1a (patch)
tree08b7489372e7321114e2f441b2a9bd8a47cba8b7 /CONFIG
parent2e2c3efc4e2dbf932ea493134a81c72dec278734 (diff)
downloadmetatile-274b5623b41751eb6298b8786f640b5799ba9b1a.tar
metatile-274b5623b41751eb6298b8786f640b5799ba9b1a.zip
CONFIG, TODO: fix typos
CONFIG: delete trailing whitespace darcs-hash:20071115144151-ae588-b94163e5487ccf67380f48e57a6e1650456e1e58
Diffstat (limited to 'CONFIG')
-rw-r--r--CONFIG16
1 files changed, 8 insertions, 8 deletions
diff --git a/CONFIG b/CONFIG
index d8d11d0..3bf63db 100644
--- a/CONFIG
+++ b/CONFIG
@@ -1,6 +1,6 @@
== Configuring xmonad ==
-xmonad is configure by creating and editing the Haskell file:
+xmonad is configured by creating and editing the Haskell file:
~/.xmonad/xmonad.hs
@@ -9,13 +9,13 @@ window manager.
== A simple example ==
-Here is a basic example, which takes defaults from xmonad, and overrides
+Here is a basic example, which takes defaults from xmonad, and overrides
the border width, default terminal, and some colours:
--
-- An example, simple ~/.xmonad/xmonad.hs file.
-- It overrides a few basic settings, reusing all the other defaults,
- --
+ --
import XMonad
@@ -44,7 +44,7 @@ Place this text in ~/.xmonad/xmonad.hs, and then check that it is
syntactically and type correct, by loading it in the Haskell
interpreter:
- $ ghci ~/.xmonad/xmonad.hs
+ $ ghci ~/.xmonad/xmonad.hs
GHCi, version 6.8.1: http://www.haskell.org/ghc/ :? for help
Loading package base ... linking ... done.
Ok, modules loaded: Main.
@@ -52,7 +52,7 @@ interpreter:
Prelude Main> :t main
main :: IO ()
-Ok, looks good.
+Ok, looks good.
== Loading your configuration ==
@@ -68,15 +68,15 @@ GHC isn't in your path, you can still compile the xmonad.hs file yourself:
When you hit mod-q, this newly compiled xmonad will be used.
-== Where are the defaults? ==
+== Where are the defaults? ==
The default configuration values are defined in the source file:
- XMonad/Config.hs
+ XMonad/Config.hs
the XConfig data structure itself is defined in:
- XMonad.hs
+ XMonad/Core.hs
== Extensions ==