blob: 02eb7aeb91c5933c370fda671118aa6e13dddfd7 (
plain)
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
|
-----------------------------------------------------------------------------
-- |
-- Module : Plugins.Monitors.Common
-- Copyright : (c) 2010, 2011, 2013, 2016, 2017, 2018 Jose Antonio Ortega Ruiz
-- (c) 2007-2010 Andrea Rossato
-- License : BSD-style (see LICENSE)
--
-- Maintainer : Jose A. Ortega Ruiz <jao@gnu.org>
-- Stability : unstable
-- Portability : unportable
--
-- Utilities used by xmobar's monitors
--
-----------------------------------------------------------------------------
module Xmobar.Plugins.Monitors.Common
( module Xmobar.Plugins.Monitors.Common.Types
, module Xmobar.Plugins.Monitors.Common.Run
, module Xmobar.Plugins.Monitors.Common.Output
, module Xmobar.Plugins.Monitors.Common.Parsers
, module Xmobar.Plugins.Monitors.Common.Files
) where
import Xmobar.Plugins.Monitors.Common.Types
import Xmobar.Plugins.Monitors.Common.Run
import Xmobar.Plugins.Monitors.Common.Output
import Xmobar.Plugins.Monitors.Common.Parsers
import Xmobar.Plugins.Monitors.Common.Files
|