about summary refs log tree commit diff
path: root/src/lib/XMonad/Custom/Misc.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/XMonad/Custom/Misc.hs21
1 files changed, 5 insertions, 16 deletions
diff --git a/src/lib/XMonad/Custom/Misc.hs b/src/lib/XMonad/Custom/Misc.hs
index 366c01f..2511cbc 100644
--- a/src/lib/XMonad/Custom/Misc.hs
+++ b/src/lib/XMonad/Custom/Misc.hs
@@ -3,9 +3,9 @@
 -- |
 -- Module                  : XMonad.Custom.Misc
 -- Description             : Miscellaneous functions and constants
--- Copyright               : (c) Azat Bahawi 2018-2021
+-- Copyright               : (c) Azat Bahawi 2018-2022
 -- SPDX-License-Identifier : GPL-3.0-or-later
--- Maintainer              : azahi@teknik.io
+-- Maintainer              : azat@bahawi.net
 -- Stability               : experimental
 -- Portability             : non-portable
 --
@@ -15,22 +15,11 @@ module XMonad.Custom.Misc
   , applications
   ) where
 
-data Applications = Applications
-  { browser :: !String
-  , mixer   :: !String
-  , notify  :: !String
-  , player  :: !String
-  , term    :: !String
-  , top     :: !String
+newtype Applications = Applications
+  { term :: String
   }
   deriving (Eq, Show)
 
 
 applications :: Applications
-applications = Applications { browser = "qutebrowser"
-                            , mixer   = "pulsemixer"
-                            , notify  = "notify-send"
-                            , player  = "ncmpcpp"
-                            , term    = "alacritty"
-                            , top     = "htop"
-                            }
+applications = Applications { term = "alacritty" }

Consider giving Nix/NixOS a try! <3