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
|
-----------------------------------------------------------------------------
-- |
-- Module : XMonad.Custom.Manage
-- Copyright : (c) azahi 2018
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : azahi <azahi@teknik.io>
-- Stability : unstable
-- Portability : unportable
--
-- Custom target for container (window) management.
--
-----------------------------------------------------------------------------
module XMonad.Custom.Manage
( manageHook'
) where
import XMonad
import XMonad.Custom.Scratchpads
import XMonad.Hooks.InsertPosition
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.ManageHelpers
import XMonad.Layout.Fullscreen
import XMonad.Util.NamedScratchpad
composeActions :: [MaybeManageHook]
composeActions =
[ appName =? "emacs-popup" -?> tileBelowNoFocus
, appName =? "eterm" -?> tileBelow
, className =? "Pinentry" -?> doCenterFloat
, className =? "Steam" <&&> not <$> title =? "Steam" -?> doFloat
, className =? "Xmessage" -?> doCenterFloat
, className =? "Zenity" -?> doCenterFloat
, className =? "explorer.exe" -?> doFullFloat
, className =? "qemu-system-x86" -?> doCenterFloat
, className =? "qemu-system-x86_64" -?> doCenterFloat
, className =? "urxvt" -?> tileBelow
, className =? "xterm" -?> tileBelow
, isDialog -?> doCenterFloat
, isFullscreen -?> doFullFloat
, pure True -?> normalTile
, stringProperty "WM_WINDOW_ROLE" =? "pop-up" -?> doCenterFloat
, stringProperty "WM_WINDOW_ROLE" =? "GtkFileChooserDialog" -?> doCenterFloat
, transience
]
where
normalTile = insertPosition Above Newer
tileBelow = insertPosition Below Newer
tileBelowNoFocus = insertPosition Below Older
manageHook' :: ManageHook
manageHook' = mconcat [ manageDocks
, fullscreenManageHook
, namedScratchpadManageHook scratchpads
, composeOne composeActions
]
|