diff options
author | Martin Perner <martin@perner.cc> | 2011-10-26 01:00:32 +0200 |
---|---|---|
committer | Martin Perner <martin@perner.cc> | 2011-10-26 02:01:05 +0200 |
commit | 9718dabe6c6d5979e3f6837ef04a39d3ad8c786c (patch) | |
tree | a4b13708063b856499989bd453d7c28a335b55e7 /src/Config.hs | |
parent | 218d07606a7564cdcde5974d53b8e81d04c02a44 (diff) | |
download | xmobar-9718dabe6c6d5979e3f6837ef04a39d3ad8c786c.tar.gz xmobar-9718dabe6c6d5979e3f6837ef04a39d3ad8c786c.tar.bz2 |
Adding locale support to Date plugins
This commits adds support for localized datetime outputs like date(1).
Diffstat (limited to 'src/Config.hs')
-rw-r--r-- | src/Config.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Config.hs b/src/Config.hs index 4405314..cc1692e 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -27,6 +27,7 @@ import Commands import {-# SOURCE #-} Runnable import Plugins.Monitors import Plugins.Date +import Plugins.DateL import Plugins.PipeReader import Plugins.CommandReader import Plugins.StdinReader @@ -41,6 +42,7 @@ import Plugins.MBox #ifdef DATEZONE import Plugins.DateZone +import Plugins.DateZoneL #endif -- $config @@ -113,12 +115,12 @@ infixr :*: -- the 'Runnable.Runnable' Read instance. To install a plugin just add -- the plugin's type to the list of types (separated by ':*:') appearing in -- this function's type signature. -runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: Kbd :*: +runnableTypes :: Command :*: Monitors :*: Date :*: DateL :*: PipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: Kbd :*: #ifdef INOTIFY Mail :*: MBox :*: #endif #ifdef DATEZONE - DateZone :*: + DateZone :*: DateZoneL :*: #endif () runnableTypes = undefined |