xmonad-contrib-0.6: Third party extensions for xmonadSource codeContentsIndex
XMonad.Config.Arossato
Portabilityportable
Stabilitystable
Maintainerandrea.rossato@unibz.it
Contents
Usage
Description
This module specifies my xmonad defaults.
Synopsis
arossatoTabbedConfig :: TConf
Usage

The simplest way to use this configuration module is to use an ~/.xmonad/xmonad.hs like this:

 module Main (main) where

 import XMonad
 import XMonad.Config.Arossato (arossatoConfig)

 main :: IO ()
 main = xmonad arossatoConfig

You can use this module also as a starting point for writing your own configuration module from scratch. Save it as your ~/.xmonad/xmonad.hs and:

1. Change the module name from

 module XMonad.Config.Arossato
     ( -- * Usage
       -- $usage
       arossatoConfig
     , arossatoTabbedConfig
     ) where

to

 module Main where

2. Add a line like:

 main = xmonad arossatoConfig

3. Start playing with the configuration options...;)

arossatoTabbedConfig :: TConfSource
My configuration for the Tabbed Layout. Basically this is the Ion3 clean style.
Produced by Haddock version 2.3.0