xmonad-contrib-bluetilebranch-0.8.1.3: Third party extensions for xmonadSource codeContentsIndex
XMonad.Util.Themes
Portabilityunportable
Stabilityunstable
Maintainerandrea.rossato@unibz.it
Contents
Usage
Description
A (hopefully) growing collection of themes for decorated layouts.
Synopsis
listOfThemes :: [ThemeInfo]
ppThemeInfo :: ThemeInfo -> String
xmonadTheme :: ThemeInfo
smallClean :: ThemeInfo
robertTheme :: ThemeInfo
deiflTheme :: ThemeInfo
oxymor00nTheme :: ThemeInfo
donaldTheme :: ThemeInfo
wfarrTheme :: ThemeInfo
kavonForestTheme :: ThemeInfo
kavonLakeTheme :: ThemeInfo
kavonPeacockTheme :: ThemeInfo
kavonVioGreenTheme :: ThemeInfo
kavonBluesTheme :: ThemeInfo
kavonAutumnTheme :: ThemeInfo
kavonFireTheme :: ThemeInfo
kavonChristmasTheme :: ThemeInfo
data ThemeInfo = TI {
themeName :: String
themeAuthor :: String
themeDescription :: String
theme :: Theme
}
Usage

This module stores some user contributed themes which can be used with decorated layouts (such as Tabbed). (Note that these themes only apply to decorated layouts, such as those found in XMonad.Layout.Tabbed and XMonad.Layout.DecorationMadness; they do not apply to xmonad as a whole.)

If you want to use one of them with one of your decorated layouts, you need to substitute defaultTheme with, for instance, (theme smallClean).

Here is an example:

 import XMonad
 import XMonad.Util.Themes
 import XMonad.Layout.Tabbed

 myLayout = tabbed shrinkText (theme smallClean)

 main = xmonad defaultConfig {layoutHook = myLayout}

If you have a theme you would like to share, adding it to this module is very easy.

You can use xmonadTheme or smallClean as a template.

At the present time only the themeName field is used. But please provide all the other information, which will be used at a later time.

Please, remember to add your theme to the list of exported functions, and to the listOfThemes.

Thanks for your contribution!

listOfThemes :: [ThemeInfo]Source
ppThemeInfo :: ThemeInfo -> StringSource
xmonadTheme :: ThemeInfoSource
The default xmonad theme, by David Roundy.
smallClean :: ThemeInfoSource
Small decorations with a Ion3 remembrance, by Andrea Rossato.
robertTheme :: ThemeInfoSource
Ffrom Robert Manea's prompt theme.
deiflTheme :: ThemeInfoSource
deifl's Theme, by deifl.
oxymor00nTheme :: ThemeInfoSource
oxymor00n's theme, by Tom Rauchenwald.
donaldTheme :: ThemeInfoSource
Don's prefered colors - from DynamicLog...;)
wfarrTheme :: ThemeInfoSource
kavonForestTheme :: ThemeInfoSource
Forest colours, by Kathryn Andersen
kavonLakeTheme :: ThemeInfoSource
Lake (blue/green) colours, by Kathryn Andersen
kavonPeacockTheme :: ThemeInfoSource
Peacock colours, by Kathryn Andersen
kavonVioGreenTheme :: ThemeInfoSource
Violet-Green colours, by Kathryn Andersen
kavonBluesTheme :: ThemeInfoSource
Blue colours, by Kathryn Andersen
kavonAutumnTheme :: ThemeInfoSource
Autumn colours, by Kathryn Andersen
kavonFireTheme :: ThemeInfoSource
Fire colours, by Kathryn Andersen
kavonChristmasTheme :: ThemeInfoSource
Christmas colours, by Kathryn Andersen
data ThemeInfo Source
Constructors
TI
themeName :: String
themeAuthor :: String
themeDescription :: String
theme :: Theme
Produced by Haddock version 2.4.2