summaryrefslogtreecommitdiffhomepage
path: root/src/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs
index 48df632..0eca0cb 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -59,12 +59,13 @@ main = do
conf <- doOpts c o
fs <- initFont d (font conf)
+ fl <- mapM (initFont d) (fontList conf)
cls <- mapM (parseTemplate conf) (splitTemplate conf)
sig <- setupSignalHandler
vars <- mapM (mapM $ startCommand sig) cls
(r,w) <- createWin d fs conf
let ic = Map.empty
- startLoop (XConf d r w fs ic conf) sig vars
+ startLoop (XConf d r w (fs:fl) ic conf) sig vars
-- | Splits the template in its parts
splitTemplate :: Config -> [String]