summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorslotThe <soliditsallgood@mailbox.org>2021-05-24 14:18:36 +0200
committerslotThe <soliditsallgood@mailbox.org>2021-05-24 14:18:36 +0200
commitb0119a495884bcba252d7e79265f5e01f17b41d1 (patch)
tree53cbd6becdbbb9f687d91c1bdce6c5de29a2e6df
parent0a673d104f1107e366b8ab8a0024e29c2762f1d4 (diff)
downloadxmobar-b0119a495884bcba252d7e79265f5e01f17b41d1.tar.gz
xmobar-b0119a495884bcba252d7e79265f5e01f17b41d1.tar.bz2
Add NotmuchMail as a runnable type
This is needed for the plugin to parse properly in non-Haskell based configurations. Related: https://github.com/jaor/xmobar/issues/547
-rw-r--r--src/Xmobar/Run/Types.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Xmobar/Run/Types.hs b/src/Xmobar/Run/Types.hs
index f4a7252..deec8ba 100644
--- a/src/Xmobar/Run/Types.hs
+++ b/src/Xmobar/Run/Types.hs
@@ -30,6 +30,7 @@ import Xmobar.Plugins.XMonadLog
import Xmobar.Plugins.EWMH
import Xmobar.Plugins.Kbd
import Xmobar.Plugins.Locks
+import Xmobar.Plugins.NotmuchMail
#ifdef INOTIFY
import Xmobar.Plugins.Mail
@@ -54,7 +55,7 @@ infixr :*:
-- this function's type signature.
runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*:
BufferedPipeReader :*: CommandReader :*: StdinReader :*:
- XMonadLog :*: EWMH :*: Kbd :*: Locks :*:
+ XMonadLog :*: EWMH :*: Kbd :*: Locks :*: NotmuchMail :*:
#ifdef INOTIFY
Mail :*: MBox :*:
#endif