diff options
author | jao <jao@gnu.org> | 2018-11-25 22:46:50 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2018-11-25 22:46:50 +0000 |
commit | 01ef9a6549e6de63384f2e597804c11f0d837455 (patch) | |
tree | 88536f0ad382a1c2eddfb2ce7e01bcb7b7c1e05d /src/Xmobar.hs | |
parent | dba5bb8d946deca0872a17d98e3f1753c2160163 (diff) | |
download | xmobar-01ef9a6549e6de63384f2e597804c11f0d837455.tar.gz xmobar-01ef9a6549e6de63384f2e597804c11f0d837455.tar.bz2 |
Xmobar.App.Defaults and Xmobar.Config.Types
Diffstat (limited to 'src/Xmobar.hs')
-rw-r--r-- | src/Xmobar.hs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Xmobar.hs b/src/Xmobar.hs index 2b15835..dda56db 100644 --- a/src/Xmobar.hs +++ b/src/Xmobar.hs @@ -16,9 +16,11 @@ ----------------------------------------------------------------------------- module Xmobar (xmobar + , defaultConfig + , getXdgConfigFile , Runnable (..) , Exec (..) - , module Xmobar.Config + , module Xmobar.Config.Types , module Xmobar.Plugins.BufferedPipeReader , module Xmobar.Plugins.CommandReader , module Xmobar.Plugins.Date @@ -40,7 +42,7 @@ module Xmobar (xmobar import Xmobar.Run.Runnable import Xmobar.Run.Commands -import Xmobar.Config +import Xmobar.Config.Types import Xmobar.Plugins.BufferedPipeReader import Xmobar.Plugins.CommandReader import Xmobar.Plugins.Date @@ -59,4 +61,5 @@ import Xmobar.Plugins.PipeReader import Xmobar.Plugins.StdinReader import Xmobar.Plugins.XMonadLog -import Xmobar.App.Main (xmobar) +import Xmobar.App.Main(xmobar) +import Xmobar.App.Defaults(defaultConfig, getXdgConfigFile) |