summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJohn Soo <jsoo1@asu.edu>2021-09-17 16:05:49 -0700
committerJohn Soo <jsoo1@asu.edu>2021-11-07 17:47:47 -0800
commitebea33e52fb71b049baf17374b88a7521de4097f (patch)
tree68995fef31b9b20f11410b2675ea52815b61ab55
parentb2d9ca5a587c62ee38d04766689f19d3d4a13c1b (diff)
downloadxmobar-ebea33e52fb71b049baf17374b88a7521de4097f.tar.gz
xmobar-ebea33e52fb71b049baf17374b88a7521de4097f.tar.bz2
Export SignalTypes from Xmobar for use in other haskell code.
-rw-r--r--src/Xmobar.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Xmobar.hs b/src/Xmobar.hs
index 28ef354..2a32da1 100644
--- a/src/Xmobar.hs
+++ b/src/Xmobar.hs
@@ -23,6 +23,7 @@ module Xmobar (xmobar
, Runnable (..)
, Exec (..)
, Command (..)
+ , SignalType (..)
, module Xmobar.Config.Types
, module Xmobar.Config.Parse
, module Xmobar.Plugins.BufferedPipeReader
@@ -75,5 +76,7 @@ import Xmobar.Plugins.MarqueePipeReader
import Xmobar.Plugins.XMonadLog
import Xmobar.Plugins.NotmuchMail
+import Xmobar.System.Signal(SignalType (..))
+
import Xmobar.App.Main(xmobar, xmobarMain, configFromArgs)
import Xmobar.App.Config(defaultConfig)