blob: 0ca376176da3a5b63586ce532d4363df159b9a01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{-# OPTIONS_GHC -Wno-missing-signatures #-}
-- |
-- Module : XMonad.Custom.Layout
-- Description : Layouts and such
-- 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.Layout
( ngLayoutHook
) where
import XMonad ( Full(Full)
, Tall(Tall)
, (|||)
)
ngLayoutHook = Tall 1 (1 / 2) (3 / 100) ||| Full
|