blob: decc2deeb16c23523e92861d4a97f4723ed3dbf8 (
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
|
-----------------------------------------------------------------------------
-- |
-- Module : XMonad.Custom.Navigation
-- Copyright : (c) azahi 2018
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : azahi@teknik.io
-- Stability : unstable
-- Portability : unportable
--
-- Custom target for window navigation.
--
------------------------------------------------------------------------
module XMonad.Custom.Navigation
( navigation2DConfig
) where
import XMonad.Actions.Navigation2D
navigation2DConfig :: Navigation2DConfig
navigation2DConfig = def
{ defaultTiledNavigation = hybridNavigation
, floatNavigation = hybridNavigation
, layoutNavigation = [("Full", centerNavigation)]
, unmappedWindowRect = [("Full", singleWindowRect)]
}
|