summaryrefslogtreecommitdiffhomepage
path: root/Plugins.hs
blob: d0753837bb5c8009c405a98b0a02b872c98c8bc3 (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
-----------------------------------------------------------------------------
-- |
-- Module      :  Xmobar.Plugins
-- Copyright   :  (c) Andrea Rossato
-- License     :  BSD-style (see LICENSE)
--
-- Maintainer  :  Andrea Rossato <andrea.rossato@unitn.it>
-- Stability   :  unstable
-- Portability :  unportable
--
-- This module exports the API for plugins.
--
-- Have a look at Plugins\/HelloWorld.hs
--
-----------------------------------------------------------------------------

module Plugins
    ( Exec (..)
    , tenthSeconds
    , readFileSafe
    , hGetLineSafe
    ) where

import Commands
import XUtil