diff options
author | Azat Bahawi <azat@bahawi.net> | 2022-08-16 01:46:04 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-08-16 01:46:04 +0300 |
commit | 3cd06b22069c009b8c5fea2d5fad5f996667d2e3 (patch) | |
tree | 4b5f1cb453de13c560bc8aa5a57952713cf360aa /src/lib/XMonad/Custom/Misc.hs | |
parent | absolute garbage wtf (diff) |
huge update-o
Diffstat (limited to '')
-rw-r--r-- | src/lib/XMonad/Custom/Misc.hs | 21 |
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" } |