----------------------------------------------------------------------------- -- | -- Module : Plugins.HelloWorld -- Copyright : (c) Andrea Rossato -- License : BSD-style (see LICENSE) -- -- Maintainer : Andrea Rossato -- Stability : unstable -- Portability : unportable -- -- A plugin example for XMobar, a status bar for the Xmonad Window Manager -- ----------------------------------------------------------------------------- module Plugins.HelloWorld where import Plugins data HelloWorld = HelloWorld deriving (Read) instance Exec HelloWorld where run HelloWorld = return "Hello World!!" rate HelloWorld = 1000 alias HelloWorld = "helloWorld"