diff options
author | Guy Gastineau <strings.stringsandstrings@gmail.com> | 2021-09-14 13:05:49 -0400 |
---|---|---|
committer | Guy Gastineau <strings.stringsandstrings@gmail.com> | 2021-09-14 15:29:14 -0400 |
commit | ec96ec469e9dff06bc503366ff7e3022c595d8f7 (patch) | |
tree | 0c950958f61283df8977c0f8f34089b669248b00 /src/Xmobar.hs | |
parent | 3a5004e39e6dc42f2691012b4513a210202311b2 (diff) | |
download | xmobar-ec96ec469e9dff06bc503366ff7e3022c595d8f7.tar.gz xmobar-ec96ec469e9dff06bc503366ff7e3022c595d8f7.tar.bz2 |
Add the QueueReader plugin.
* A queue reader for xmobar using `TQueue a` from `stm`.
This is a flexible and performat solution for sharing
data between arbitrary haskell and xmobar.
* I am not sure if I did the haddocks correctly.
Diffstat (limited to 'src/Xmobar.hs')
-rw-r--r-- | src/Xmobar.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Xmobar.hs b/src/Xmobar.hs index f37f065..28ef354 100644 --- a/src/Xmobar.hs +++ b/src/Xmobar.hs @@ -33,6 +33,7 @@ module Xmobar (xmobar #endif , module Xmobar.Plugins.EWMH , module Xmobar.Plugins.HandleReader + , module Xmobar.Plugins.QueueReader , module Xmobar.Plugins.Kbd , module Xmobar.Plugins.Locks #ifdef INOTIFY @@ -60,6 +61,7 @@ import Xmobar.Plugins.DateZone #endif import Xmobar.Plugins.EWMH import Xmobar.Plugins.HandleReader +import Xmobar.Plugins.QueueReader import Xmobar.Plugins.Kbd import Xmobar.Plugins.Locks #ifdef INOTIFY |