blob: 2511cbc19b57df9792a3d019c4581bb083e41c65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{-# 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" }
|