aboutsummaryrefslogtreecommitdiffstats
path: root/DwmPromote.hs
blob: 7792fdd9fa7cc0c61e49833737be2b6c21ca9412 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-----------------------------------------------------------------------------
-- |
-- Module      :  XMonadContrib.DwmPromote
-- Copyright   :  (c) Miikka Koskinen 2007
-- License     :  BSD3-style (see LICENSE)
--
-- Maintainer  :  arcatan@kapsi.fi
--
-----------------------------------------------------------------------------
--
-- Dwm-like promote function for xmonad.
--
-- Swaps focused window with the master window. If focus is in the
-- master, swap it with the next window in the stack. Focus stays in the
-- master.
--
-- To use, modify your Config.hs to:
--
--      import XMonadContrib.DwmPromote
--
-- and add a keybinding or substitute promote with dwmpromote:
--
--     , ((modMask,               xK_Return), dwmpromote)
--

module XMonadContrib.DwmPromote (dwmpromote) where

import XMonad
import Operations (windows)
import StackSet hiding (promote)
import qualified Data.Map as M

dwmpromote :: X ()
dwmpromote = windows promote

promote :: (Integral i, Ord a) => StackSet i j a -> StackSet i j a
promote w = maybe w id $ do
    a <- peek w -- fail if null
    let stack = index (current w) w
    let newstack = swap a (next stack a) stack
    return $ w { stacks = M.insert (current w) newstack (stacks w),
                 focus = M.insert (current w) (head newstack) (focus w) }
  where
    next s a | head s /= a = head s -- focused is not master
             | length s > 1 = s !! 1
             | otherwise = a