blob: dbf7e2c3bd40e6b16f67634e3513acbc82eddf0d (
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) azahi 2018
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : azahi@teknik.io
-- Stability : unstable
-- Portability : unportable
--
-- Miscellaneous functions, data types and declarations used for 'XMonad.Custom'.
--
------------------------------------------------------------------------
module XMonad.Custom.Misc
( Applications (..)
, customApplications
) where
data Applications = Applications
{ term :: !String
, browser :: !String
, top :: !String
, mixer :: !String
, notify :: !String
} deriving (Eq, Show)
customApplications :: Applications
customApplications = Applications
{ term = "/usr/bin/urxvtc"
, browser = "/usr/bin/qutebrowser"
, top = "/usr/bin/htop"
, mixer = "/usr/bin/alsamixer"
, notify = "/usr/bin/notify-send"
}
|