aboutsummaryrefslogtreecommitdiffstats
path: root/DynamicWorkspaces.hs
blob: 0f417bbad8bdab66d87447df2399422afd70661e (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
47
48
49
50
51
52
-----------------------------------------------------------------------------
-- |
-- Module      :  XMonadContrib.DynamicWorkspaces
-- Copyright   :  (c) David Roundy <droundy@darcs.net>
-- License     :  BSD3-style (see LICENSE)
--
-- Maintainer  :  David Roundy <droundy@darcs.net>
-- Stability   :  unstable
-- Portability :  unportable
--
-- Provides bindings to add and delete workspaces.  Note that you may only
-- delete a workspace that is already empty.
--
-----------------------------------------------------------------------------

module XMonadContrib.DynamicWorkspaces (
                                         -- * Usage
                                         -- $usage
                                         addWorkspace, removeWorkspace
                                       ) where

import XMonad ( X )
import Operations ( windows )
import StackSet ( tagMember, StackSet(..), Screen(..), Workspace(..) )

-- $usage
-- You can use this module with the following in your Config.hs file:
-- 
-- > import XMonadContrib.DynamicWorkspaces
--
-- >   , ((modMask .|. shiftMask, xK_Up), addWorkspace)
-- >   , ((modMask .|. shiftMask, xK_Down), removeWorkspace)

addWorkspace :: X ()
addWorkspace = windows addWorkspace'

removeWorkspace :: X ()
removeWorkspace = windows removeWorkspace'

addWorkspace' :: (Enum i, Num i) => StackSet i a sid sd -> StackSet i a sid sd
addWorkspace' s@(StackSet { current = scr@(Screen { workspace = w })
                          , hidden = ws })
    = s { current = scr { workspace = Workspace newtag Nothing }
        , hidden = w:ws }
    where (newtag:_) = filter (not . (`tagMember` s)) [0..]

removeWorkspace' :: StackSet i a sid sd -> StackSet i a sid sd
removeWorkspace' s@(StackSet { current = scr@(Screen { workspace = Workspace { stack = Nothing } })
                             , hidden = (w:ws) })
                    = s { current = scr { workspace = w }
                        , hidden = ws }
removeWorkspace' s = s