From b975c0a90dce97c8d96ab464d69575a9d8c150b3 Mon Sep 17 00:00:00 2001 From: azahi Date: Tue, 12 Jun 2018 22:59:58 +0300 Subject: Add X.Custom and split existing code in modules --- src/XMonad/Custom/Misc.hs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/XMonad/Custom/Misc.hs (limited to 'src/XMonad/Custom/Misc.hs') diff --git a/src/XMonad/Custom/Misc.hs b/src/XMonad/Custom/Misc.hs new file mode 100644 index 0000000..41883b5 --- /dev/null +++ b/src/XMonad/Custom/Misc.hs @@ -0,0 +1,19 @@ +module XMonad.Custom.Misc + ( Applications (..) + , customApplications + ) where + +data Applications = Applications { term :: String + , browser :: String + , top :: String + , mixer :: String + , notify :: String + } deriving (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" + } -- cgit 1.4.1