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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
-- Common ways to select workspaces
module Rahm.Desktop.Workspaces where
import Control.Arrow (Arrow ((&&&)))
import Data.Char (isUpper, toLower, toUpper)
import Data.List (find, sort, sortBy, sortOn)
import Data.List.Safe ((!!))
import Data.Maybe (fromMaybe, mapMaybe)
import Rahm.Desktop.Common (getCurrentWorkspace, gotoWorkspace)
import qualified Rahm.Desktop.StackSet as W
( Screen (Screen, screenDetail, workspace),
StackSet (StackSet, current, visible),
Workspace (Workspace, tag),
integrate',
)
import XMonad
( Rectangle (Rectangle),
ScreenDetail (SD),
ScreenId,
Window,
WindowSet,
WorkspaceId,
X,
windows,
withWindowSet,
)
import Prelude
( Bool (..),
Enum,
Eq (..),
Foldable (elem),
Functor (fmap),
Int,
Maybe (..),
Monad (return),
Ord (compare),
String,
const,
filter,
flip,
fst,
head,
last,
map,
maybe,
reverse,
snd,
($),
(++),
(.),
(<$>),
(=<<),
)
newtype Selector = Selector (forall a. (a -> Bool) -> [a] -> Maybe a)
data WorkspaceState = Current | Hidden | Visible
deriving (Ord, Eq, Enum)
-- Returns all the workspaces that are either visible, current or Hidden but
-- have windows and that workspace's state.
--
-- In other words, filters out workspaces that have no windows and are not
-- visible.
--
-- This function will sort the result by the workspace tag.
getPopulatedWorkspaces ::
W.StackSet String l a sid sd -> [(WorkspaceState, W.Workspace String l a)]
getPopulatedWorkspaces (W.StackSet (W.Screen cur _ _) vis hi _) =
filter ((/= "*") . W.tag . snd) $
sortOn (W.tag . snd) $
mapMaybe (\w@(W.Workspace _ _ s) -> fmap (const (Hidden, w)) s) hi
++ map (\(W.Screen w _ _) -> (Visible, w)) vis
++ [(Current, cur)]
next :: Selector
next = Selector $ \f l -> select f l l
where
select f (x : y : xs) _ | f x = Just y
select f [x] (y : _) | f x = Just y
select f (x : xs) orig = select f xs orig
select f _ _ = Nothing
prev :: Selector
prev = Selector $ \f l ->
let (Selector fn) = next in fn f (reverse l)
lastWorkspaceId :: X WorkspaceId
lastWorkspaceId =
W.tag . snd . last <$> withWindowSet (return . getPopulatedWorkspaces)
firstWorkspaceId :: X WorkspaceId
firstWorkspaceId =
W.tag . snd . head <$> withWindowSet (return . getPopulatedWorkspaces)
windowsInCurrentWorkspace :: X [Window]
windowsInCurrentWorkspace = withWindowSet $
\(W.StackSet (W.Screen (W.Workspace _ _ s) _ _) _ _ _) -> do
return $ W.integrate' s
getHorizontallyOrderedScreens ::
W.StackSet wid l a ScreenId ScreenDetail ->
[(Bool, W.Screen wid l a ScreenId ScreenDetail)]
-- ^ Returns a list of screens ordered from leftmost to rightmost.
getHorizontallyOrderedScreens windowSet =
flip sortBy screens $ \sc1 sc2 ->
let (SD (Rectangle x1 _ _ _)) = W.screenDetail (snd sc1)
(SD (Rectangle x2 _ _ _)) = W.screenDetail (snd sc2)
in x1 `compare` x2
where
screens = (True, W.current windowSet) : map (False,) (W.visible windowSet)
accompaningWorkspace :: WorkspaceId -> WorkspaceId
accompaningWorkspace [s] =
return $
if isUpper s
then toLower s
else toUpper s
accompaningWorkspace s = s
adjacentWorkspaceNotVisible :: Selector -> WorkspaceId -> X WorkspaceId
adjacentWorkspaceNotVisible (Selector selector) from =
withWindowSet $ \ss ->
let tags =
sort $
W.tag . snd
<$> filter
(\x -> fst x /= Visible)
( getPopulatedWorkspaces ss
)
in return $ fromMaybe from $ selector (== from) tags
adjacentWorkspace :: Selector -> WorkspaceId -> X WorkspaceId
adjacentWorkspace (Selector selector) from =
withWindowSet $ \ss ->
let tags = sort $ W.tag . snd <$> getPopulatedWorkspaces ss
in return $ fromMaybe from $ selector (== from) tags
viewAdjacent :: Selector -> X ()
viewAdjacent sel =
gotoWorkspace =<< (adjacentWorkspaceNotVisible sel =<< getCurrentWorkspace)
adjacentScreen :: Selector -> X WorkspaceId
adjacentScreen (Selector f) = do
(screens, current) <-
withWindowSet $ return . (getHorizontallyOrderedScreens &&& W.current)
return $ W.tag $ W.workspace $ maybe current snd (f fst screens)
withScreen :: (WorkspaceId -> WindowSet -> WindowSet) -> Int -> X ()
withScreen fn n = do
windows $ \windowSet ->
case map snd (getHorizontallyOrderedScreens windowSet) !! n of
Nothing -> windowSet
Just screen -> fn (W.tag $ W.workspace screen) windowSet
workspaceWithWindow :: Window -> X (Maybe WorkspaceId)
workspaceWithWindow wid = withWindowSet $ \(W.StackSet c v h _) ->
return $
W.tag
<$> find
(\(W.Workspace _ _ stack) -> wid `elem` W.integrate' stack)
(map W.workspace (c : v) ++ h)
|