minor formatting of manpage

This commit is contained in:
Adam Vogt 2014-05-11 17:17:35 +00:00
parent f0054fdde7
commit d60791e3f5

View File

@ -76,7 +76,7 @@ To use xmonad as your window manager add to your _~/.xinitrc_ file:
> exec xmonad > exec xmonad
#Customization #Customization
xmonad is customized in ~/.xmonad/xmonad.hs, and then restarting xmonad is customized in ~/.xmonad/xmonad.hs, and then restarted
with mod-q. with mod-q.
You can find many extensions to the core feature set in the xmonad- You can find many extensions to the core feature set in the xmonad-
@ -89,8 +89,10 @@ _~/.xmonad/lib/_ are available in GHC's searchpath. Hierarchical modules
are supported: for example, the file are supported: for example, the file
_~/.xmonad/lib/XMonad/Stack/MyAdditions.hs_ could contain: _~/.xmonad/lib/XMonad/Stack/MyAdditions.hs_ could contain:
> module XMonad.Stack.MyAdditions (function1) where ```haskell
> function1 = error "function1: Not implemented yet!" module XMonad.Stack.MyAdditions (function1) where
function1 = error "function1: Not implemented yet!"
```
Your xmonad.hs may then import XMonad.Stack.MyAdditions as if that Your xmonad.hs may then import XMonad.Stack.MyAdditions as if that
module was contained within xmonad or xmonad-contrib. module was contained within xmonad or xmonad-contrib.