blob: 5e1e1b170555ce3cf4c20907fd86e0cb60540a8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
-- |
-- Module : XMonad.Custom.Log
-- Description : Loggers and statusbar configuration
-- 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.Log
( ngLogHook
) where
import XMonad ( X )
import XMonad.Hooks.DynamicLog ( dynamicLog )
ngLogHook :: X ()
ngLogHook = do
dynamicLog
|