xmonad-0.12: A tiling window manager

Copyright(c) Spencer Janssen 2007
LicenseBSD3-style (see LICENSE)
Maintainerdons@galois.com
Stabilitystable
Portabilityportable
Safe HaskellNone
LanguageHaskell98

XMonad.Config

Description

This module specifies the default configuration values for xmonad.

DO NOT MODIFY THIS FILE! It won't work. You may configure xmonad by providing your own ~/.xmonad/xmonad.hs that overrides specific fields in the default config, def. For a starting point, you can copy the xmonad.hs found in the man directory, or look at examples on the xmonad wiki.

Synopsis

Documentation

defaultConfig :: XConfig (Choose Tall (Choose (Mirror Tall) Full)) Source

Deprecated: Use def (from Data.Default, and re-exported by XMonad and XMonad.Config) instead.

The default set of configuration values itself

class Default a where

A class for types with a default value.

Methods

def :: a

The default value for this type.

Instances

Default a => Default (Query a) 
Default a => Default (X a)