diff options
Diffstat (limited to 'src/XMonad/Custom/Misc.hs')
-rw-r--r-- | src/XMonad/Custom/Misc.hs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/XMonad/Custom/Misc.hs b/src/XMonad/Custom/Misc.hs index 584fe2d..5d22063 100644 --- a/src/XMonad/Custom/Misc.hs +++ b/src/XMonad/Custom/Misc.hs @@ -18,18 +18,20 @@ module XMonad.Custom.Misc ) where data Applications = Applications - { term :: !String - , browser :: !String - , top :: !String + { browser :: !String , mixer :: !String , notify :: !String + , player :: !String + , term :: !String + , top :: !String } deriving (Eq, Show) applications :: Applications applications = Applications - { term = "urxvtc" - , browser = "qutebrowser" - , top = "htop" + { browser = "qutebrowser" , mixer = "alsamixer" , notify = "notify-send" + , player = "ncmpcpp" + , term = "urxvtc" + , top = "htop" } |