diff options
author | Reto Hablützel <rethab@rethab.ch> | 2014-08-09 18:32:02 +0200 |
---|---|---|
committer | Reto Hablützel <rethab@rethab.ch> | 2014-08-09 18:32:02 +0200 |
commit | 56b31659dfb6dffc166b4e9645cfa825996cb3cb (patch) | |
tree | 27b439540ef86cb5a2bac2c8dd8470ca8ad31b9f /src/Config.hs | |
parent | 2d3638b8e0905b156b58fb65826ff7c272f4b615 (diff) | |
download | xmobar-56b31659dfb6dffc166b4e9645cfa825996cb3cb.tar.gz xmobar-56b31659dfb6dffc166b4e9645cfa825996cb3cb.tar.bz2 |
New Plugin MarqueePipeReader
Display a long text from a pipe with marquee. It wraps around
with a given separator and the length may be specified as well
as the delay in 10th seconds. See readme for an example.
Diffstat (limited to 'src/Config.hs')
-rw-r--r-- | src/Config.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Config.hs b/src/Config.hs index ed3e51a..bda8838 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -30,6 +30,7 @@ import Plugins.Monitors import Plugins.Date import Plugins.PipeReader import Plugins.BufferedPipeReader +import Plugins.MarqueePipeReader import Plugins.CommandReader import Plugins.StdinReader import Plugins.XMonadLog @@ -136,6 +137,6 @@ infixr :*: -- this function's type signature. runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: Kbd :*: Locks :*: Mail :*: MBox :*: - DateZone :*: + DateZone :*: MarqueePipeReader :*: () runnableTypes = undefined |