summaryrefslogtreecommitdiffhomepage
path: root/Plugins.hs
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-13 11:36:13 +0200
committerAndrea Rossato <andrea.rossato@ing.unitn.it>2007-07-13 11:36:13 +0200
commit5e916888721ab2687ce1ade07d4427aeece38139 (patch)
tree253b9e7c62c350a082f503d87fa7622bbb99d4be /Plugins.hs
parentca682c3d54cb2e10f59a8e20765f3276be10a5f6 (diff)
downloadxmobar-5e916888721ab2687ce1ade07d4427aeece38139.tar.gz
xmobar-5e916888721ab2687ce1ade07d4427aeece38139.tar.bz2
added Plugins.hs for exporting the needed plugin API
darcs-hash:20070713093613-d6583-ff3b5c080757cfd123f7f02e00612ef9bea0ab44.gz
Diffstat (limited to 'Plugins.hs')
-rw-r--r--Plugins.hs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Plugins.hs b/Plugins.hs
new file mode 100644
index 0000000..4efe615
--- /dev/null
+++ b/Plugins.hs
@@ -0,0 +1,20 @@
+-----------------------------------------------------------------------------
+-- |
+-- Module : Xmobar.Plugins
+-- Copyright : (c) Andrea Rossato
+-- License : BSD-style (see LICENSE)
+--
+-- Maintainer : Andrea Rossato <andrea.rossato@unibz.it>
+-- Stability : unstable
+-- Portability : unportable
+--
+-- This module export the API for plugins.
+--
+-- Have a look ate Plugins/HelloWorld.hs
+--
+-----------------------------------------------------------------------------
+
+module Plugins ( Exec (..)
+ ) where
+
+import Commands \ No newline at end of file