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
- 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 defaultConfig main = xmonad defaultConfig { 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.