blob: d4b162e91aab331c1e8b0fad347b3cfeab35f8db (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
{-# OPTIONS_GHC -funbox-strict-fields #-}
-----------------------------------------------------------------------------
-- |
-- Module : XMonad.Custom.Misc
-- Copyright : (c) 2018-2019 Azat Bahawi <azahi@teknik.io>
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : Azat Bahawi <azahi@teknik.io>
-- Stability : unstable
-- Portability : unportable
--
-----------------------------------------------------------------------------
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"
}
|