diff options
Diffstat (limited to 'src/lib/XMonad/Custom/Misc.hs')
-rw-r--r-- | src/lib/XMonad/Custom/Misc.hs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/lib/XMonad/Custom/Misc.hs b/src/lib/XMonad/Custom/Misc.hs new file mode 100644 index 0000000..b9901b4 --- /dev/null +++ b/src/lib/XMonad/Custom/Misc.hs @@ -0,0 +1,36 @@ +{-# OPTIONS_GHC -funbox-strict-fields #-} + +-- | +-- Module : XMonad.Custom.Misc +-- Description : Miscellaneous functions and constants +-- Copyright : (c) Azat Bahawi 2018-2021 +-- SPDX-License-Identifier : GPL-3.0-or-later +-- Maintainer : azahi@teknik.io +-- Stability : experimental +-- Portability : non-portable +-- + +module XMonad.Custom.Misc + ( Applications(..) + , applications + ) where + +data Applications = Applications + { browser :: !String + , mixer :: !String + , notify :: !String + , player :: !String + , term :: !String + , top :: !String + } + deriving (Eq, Show) + + +applications :: Applications +applications = Applications { browser = "qutebrowser" + , mixer = "pulsemixer" + , notify = "notify-send" + , player = "ncmpcpp" + , term = "urxvtc" + , top = "htop" + } |