diff options
Diffstat (limited to 'src/Xmobar/Run')
-rw-r--r-- | src/Xmobar/Run/Types.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Xmobar/Run/Types.hs b/src/Xmobar/Run/Types.hs index deec8ba..0d4ed42 100644 --- a/src/Xmobar/Run/Types.hs +++ b/src/Xmobar/Run/Types.hs @@ -41,6 +41,10 @@ import Xmobar.Plugins.MBox import Xmobar.Plugins.DateZone #endif +#ifdef KRAKEN +import Xmobar.Plugins.Kraken +#endif + import Xmobar.Run.Command -- | An alias for tuple types that is more convenient for long lists. @@ -62,5 +66,8 @@ runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: #ifdef DATEZONE DateZone :*: #endif +#ifdef KRAKEN + Kraken :*: +#endif MarqueePipeReader :*: () runnableTypes = undefined |