blob: 3c9379e261c6bd750d72ae43a11897b20b003eb2 (
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.Startup
-- Description : Startup hooks
-- 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.Startup
( ngStartupHook
) where
import XMonad ( X )
import XMonad.Hooks.SetWMName ( setWMName )
ngStartupHook :: X ()
ngStartupHook = do
setWMName "xmonad"
|