{-# OPTIONS_GHC -funbox-strict-fields #-} -- | -- Module : XMonad.Custom.Misc -- Description : Miscellaneous functions and constants -- 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.Misc ( Applications(..) , applications ) where newtype Applications = Applications { term :: String } deriving (Eq, Show) applications :: Applications applications = Applications { term = "alacritty" }