CONFIG, TODO: fix typos

CONFIG: delete trailing whitespace
This commit is contained in:
"Valery V. Vorotyntsev"
2007-11-15 14:41:51 +00:00
parent b4e0e77911
commit 2302bb3304
2 changed files with 9 additions and 9 deletions

16
CONFIG
View File

@@ -1,6 +1,6 @@
== Configuring xmonad == == 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 ~/.xmonad/xmonad.hs
@@ -9,13 +9,13 @@ window manager.
== A simple example == == 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: the border width, default terminal, and some colours:
-- --
-- An example, simple ~/.xmonad/xmonad.hs file. -- An example, simple ~/.xmonad/xmonad.hs file.
-- It overrides a few basic settings, reusing all the other defaults, -- It overrides a few basic settings, reusing all the other defaults,
-- --
import XMonad 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 syntactically and type correct, by loading it in the Haskell
interpreter: interpreter:
$ ghci ~/.xmonad/xmonad.hs $ ghci ~/.xmonad/xmonad.hs
GHCi, version 6.8.1: http://www.haskell.org/ghc/ :? for help GHCi, version 6.8.1: http://www.haskell.org/ghc/ :? for help
Loading package base ... linking ... done. Loading package base ... linking ... done.
Ok, modules loaded: Main. Ok, modules loaded: Main.
@@ -52,7 +52,7 @@ interpreter:
Prelude Main> :t main Prelude Main> :t main
main :: IO () main :: IO ()
Ok, looks good. Ok, looks good.
== Loading your configuration == == 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. 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: The default configuration values are defined in the source file:
XMonad/Config.hs XMonad/Config.hs
the XConfig data structure itself is defined in: the XConfig data structure itself is defined in:
XMonad.hs XMonad/Core.hs
== Extensions == == Extensions ==

2
TODO
View File

@@ -14,7 +14,7 @@
* document, with photos, any new layouts * document, with photos, any new layouts
* double check README build instructions * double check README build instructions
* test core with 6.6 and 6.8 * test core with 6.6 and 6.8
* upload X11/xmonad to hacakge * upload X11/xmonad to hackage
* check examples/text in use-facing Config.hs * check examples/text in use-facing Config.hs
* check tour.html and intro.html are up to date, and mention all core bindings * check tour.html and intro.html are up to date, and mention all core bindings
* bump xmonad.cabal version * bump xmonad.cabal version