diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2010-09-14 01:27:20 +0200 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2010-09-14 01:27:20 +0200 |
commit | 23b36f7dcd506ba155c4616441e37b4beab95ce0 (patch) | |
tree | 6e536614e99aa44fbf0573c3fcae51ed686e7d5e /XMonad | |
parent | 28a3ff3d9081679a7bc5aedfd2626a85ab3c85df (diff) | |
download | XMonadContrib-23b36f7dcd506ba155c4616441e37b4beab95ce0.tar.gz XMonadContrib-23b36f7dcd506ba155c4616441e37b4beab95ce0.tar.xz XMonadContrib-23b36f7dcd506ba155c4616441e37b4beab95ce0.zip |
Explain fields added for "XMonad.Layout.ImageButtonDecoration"
Ignore-this: 8eae99afb2857a91aabbf3b7f27c784e
darcs-hash:20100913232720-1499c-10f6b62841b0ce1bca58673203cb64242140d5b1.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Layout/Decoration.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/XMonad/Layout/Decoration.hs b/XMonad/Layout/Decoration.hs index 27a4008..937b1b1 100644 --- a/XMonad/Layout/Decoration.hs +++ b/XMonad/Layout/Decoration.hs @@ -79,8 +79,10 @@ data Theme = , fontName :: String -- ^ Font name , decoWidth :: Dimension -- ^ Maximum width of the decorations (if supported by the 'DecorationStyle') , decoHeight :: Dimension -- ^ Height of the decorations - , windowTitleAddons :: [(String, Align)] -- ^ Extra text to appear in a window's title bar - , windowTitleIcons :: [([[Bool]], Placement)] -- ^ Extra icons to appear in a window's title bar + , windowTitleAddons :: [(String, Align)] -- ^ Extra text to appear in a window's title bar. + -- Refer to for a use "XMonad.Layout.ImageButtonDecoration" + , windowTitleIcons :: [([[Bool]], Placement)] -- ^ Extra icons to appear in a window's title bar. + -- Inner @[Bool]@ is a row in a icon bitmap. } deriving (Show, Read) -- | The default xmonad 'Theme'. |