aboutsummaryrefslogtreecommitdiffstats
path: root/LayoutHints.hs
blob: b24dc4aee99cbab8a9ea3e5e17eceb949b347f5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module XMonadContrib.LayoutHints ( layoutHints ) where

-- to use:
-- defaultLayouts = [ layoutHints tiled, layoutHints $ mirror tiled , full ]

import Operations ( applySizeHints )
import Graphics.X11.Xlib
import Graphics.X11.Xlib.Extras ( getWMNormalHints )
import XMonad hiding ( trace )

layoutHints :: Layout -> Layout
layoutHints l = Layout { doLayout = \r x -> doLayout l r x >>= applyHints
                       , modifyLayout = \x -> layoutHints `fmap` modifyLayout l x }

applyHints :: [(Window, Rectangle)] -> X [(Window, Rectangle)]
applyHints xs = mapM applyHint xs
    where applyHint (w,Rectangle a b c d) =
              withDisplay $ \disp ->
                  do sh <- io $ getWMNormalHints disp w
                     let (c',d') = applySizeHints sh (c,d)
                     return (w, Rectangle a b c' d')