-- | -- Module : XMonad.Custom.Navigation -- Description : Window navigation and layouts -- Copyright : (c) Azat Bahawi 2018-2021 -- SPDX-License-Identifier : GPL-3.0-or-later -- Maintainer : azahi@teknik.io -- 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)] }