diff options
Diffstat (limited to 'src/Xmobar/App')
| -rw-r--r-- | src/Xmobar/App/Main.hs | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/Xmobar/App/Main.hs b/src/Xmobar/App/Main.hs index 52cdca5..489bcd0 100644 --- a/src/Xmobar/App/Main.hs +++ b/src/Xmobar/App/Main.hs @@ -29,13 +29,13 @@ import Control.Monad (unless)  import Xmobar.App.Config  import Xmobar.Config.Types  import Xmobar.Config.Parse -import qualified Xmobar.X11.Loop as X11 -import qualified Xmobar.Text.Loop as Text +import Xmobar.X11.Loop (x11Loop) +import Xmobar.Text.Loop (textLoop)  import Xmobar.App.Opts (recompileFlag, verboseFlag, getOpts, doOpts)  import Xmobar.App.Compile (recompile, trace)  xmobar :: Config -> IO () -xmobar cfg = if textOutput cfg then Text.loop cfg else X11.loop cfg +xmobar cfg = if textOutput cfg then textLoop cfg else x11Loop cfg  configFromArgs :: Config -> IO Config  configFromArgs cfg = getArgs >>= getOpts >>= doOpts cfg . fst | 
