aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout
diff options
context:
space:
mode:
authorJan Vornberger <jan.vornberger@informatik.uni-oldenburg.de>2009-10-24 23:39:28 +0200
committerJan Vornberger <jan.vornberger@informatik.uni-oldenburg.de>2009-10-24 23:39:28 +0200
commitc0d896b8c04cce75488395cc679085bbc18b043b (patch)
tree7215b9d6cd65cc040fa1140bfaa4ef8ba2a47427 /XMonad/Layout
parent4da4e91a5ab9361451bad2a51a565115bbc0d79e (diff)
downloadXMonadContrib-c0d896b8c04cce75488395cc679085bbc18b043b.tar.gz
XMonadContrib-c0d896b8c04cce75488395cc679085bbc18b043b.tar.xz
XMonadContrib-c0d896b8c04cce75488395cc679085bbc18b043b.zip
Extended decoration theme to contain extra static text that always appears in the title bar
Ignore-this: 95f46d6b9ff716a2d8002a426c1012c8 darcs-hash:20091024213928-594c5-bd98d27b6a6389e04aeef5e1a80d9dbf2a32c46b.gz
Diffstat (limited to 'XMonad/Layout')
-rw-r--r--XMonad/Layout/Decoration.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/XMonad/Layout/Decoration.hs b/XMonad/Layout/Decoration.hs
index eee686b..9288d4e 100644
--- a/XMonad/Layout/Decoration.hs
+++ b/XMonad/Layout/Decoration.hs
@@ -77,6 +77,7 @@ 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
} deriving (Show, Read)
-- | The default xmonad 'Theme'.
@@ -94,6 +95,7 @@ defaultTheme =
, fontName = "-misc-fixed-*-*-*-*-10-*-*-*-*-*-*-*"
, decoWidth = 200
, decoHeight = 20
+ , windowTitleAddons = []
}
-- | A 'Decoration' layout modifier will handle 'SetTheme', a message
@@ -374,7 +376,9 @@ updateDeco sh t fs ((w,_),(Just dw,Just (Rectangle _ _ wh ht))) = do
let s = shrinkIt sh
name <- shrinkWhile s (\n -> do size <- io $ textWidthXMF dpy fs n
return $ size > fromIntegral wh - fromIntegral (ht `div` 2)) (show nw)
- paintAndWrite dw fs wh ht 1 bc borderc tc bc [AlignCenter] [name]
+ let als = AlignCenter : map snd (windowTitleAddons t)
+ strs = name : map fst (windowTitleAddons t)
+ paintAndWrite dw fs wh ht 1 bc borderc tc bc als strs
updateDeco _ _ _ (_,(Just w,Nothing)) = hideWindow w
updateDeco _ _ _ _ = return ()