diff options
| -rw-r--r-- | Plugins.hs | 20 | 
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 | 
