blob: ca2b92f986c2133b6a1a87458c406b5830948aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
-----------------------------------------------------------------------------
-- |
-- Module : XMobar.Main
-- Copyright : (c) Andrea Rossato
-- License : BSD-style (see LICENSE)
--
-- Maintainer : Andrea Rossato <andrea.rossato@unibz.it>
-- Stability : unstable
-- Portability : unportable
--
-- The main module of XMobar, a status bar for the Xmonad Window Manager
--
-----------------------------------------------------------------------------
module Main ( -- * Main Stuff
-- $main
main
, readConfig
) where
import XMobar
import Parsers
import Config
import System.Environment
-- $main
-- | The main entry point
main :: IO ()
main =
do args <- getArgs
config <-
if length args /= 1
then do putStrLn ("No configuration file specified. Using default settings.")
return defaultConfig
else readConfig (args!!0)
cl <- parseTemplate config (template config)
var <- execCommands config cl
(d,w) <- createWin config
runXMobar config var d w eventLoop
-- | Reads the configuration files or quits with an error
readConfig :: FilePath -> IO Config
readConfig f =
do s <- readFile f
case reads s of
[(config,_)] -> return config
[] -> error ("Corrupt config file: " ++ f)
_ -> error ("Some problem occured. Aborting...")
|