diff options
author | Amir Saeid <amir@glgdgt.com> | 2021-06-29 22:35:58 +0100 |
---|---|---|
committer | Amir Saeid <amir@glgdgt.com> | 2021-07-13 08:40:45 +0100 |
commit | 7d4e3efca1cb1164040a4a64c1747a9aa163a9f0 (patch) | |
tree | b0ee6b2c98d32ca1b089106d3dbca1039eec59d7 /src/Xmobar/Run | |
parent | 13e35e692d07ad9a21a5a8b4bd8cb5326098997e (diff) | |
download | xmobar-7d4e3efca1cb1164040a4a64c1747a9aa163a9f0.tar.gz xmobar-7d4e3efca1cb1164040a4a64c1747a9aa163a9f0.tar.bz2 |
Add Kraken plugin
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 |