blob: d033389bfcafc4d1fbfd14a157947323f118c945 (
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
|
-- |
-- Module : XMonad.Custom.Navigation
-- Description : Window navigation and layouts
-- Copyright : (c) Azat Bahawi 2018-2022
-- SPDX-License-Identifier : GPL-3.0-or-later
-- Maintainer : azat@bahawi.net
-- Stability : experimental
-- Portability : non-portable
--
module XMonad.Custom.Navigation
( myNavigation2DConfig
) where
import XMonad.Actions.Navigation2D
myNavigation2DConfig :: Navigation2DConfig
myNavigation2DConfig = def
{ defaultTiledNavigation = hybridOf sideNavigation centerNavigation
, floatNavigation = hybridOf lineNavigation centerNavigation
, layoutNavigation = [("Full", centerNavigation)]
, unmappedWindowRect = [("Full", singleWindowRect)]
}
|