Portability | unportable |
---|---|
Stability | unstable |
Maintainer | andrea.rossato@unibz.it |
Safe Haskell | None |
XMonad.Layout.ShowWName
Contents
Description
This is a layout modifier that will show the workspace name
- showWName :: l a -> ModifiedLayout ShowWName l a
- showWName' :: SWNConfig -> l a -> ModifiedLayout ShowWName l a
- def :: Default a => a
- defaultSWNConfig :: SWNConfig
- data SWNConfig = SWNC {
- swn_font :: String
- swn_bgcolor :: String
- swn_color :: String
- swn_fade :: Rational
- data ShowWName a
Usage
You can use this module with the following in your
~/.xmonad/xmonad.hs
:
import XMonad.Layout.ShowWName myLayout = layoutHook def main = xmonad def { layoutHook = showWName myLayout }
For more detailed instructions on editing the layoutHook see:
showWName :: l a -> ModifiedLayout ShowWName l a
A layout modifier to show the workspace name when switching
showWName' :: SWNConfig -> l a -> ModifiedLayout ShowWName l a
A layout modifier to show the workspace name when switching. It is possible to provide a custom configuration.
def :: Default a => a
Deprecated: Use def (from Data.Default, and re-exported from XMonad.Layout.ShowWName) instead.
data SWNConfig
Constructors
SWNC | |
Fields
|
data ShowWName a
Instances
LayoutModifier ShowWName a | |
Read (ShowWName a) | |
Show (ShowWName a) |