summaryrefslogtreecommitdiffhomepage
path: root/src/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main.hs b/src/Main.hs
index 34a298d..0d4c113 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -56,9 +56,9 @@ main = do
fs <- initFont d (font conf)
cls <- mapM (parseTemplate conf) (splitTemplate conf)
vars <- mapM (mapM startCommand) cls
- (r,w, srs) <- createWin d fs conf
+ (r,w) <- createWin d fs conf
sig <- setupSignalHandler
- eventLoop (XConf d r w fs conf) vars sig srs
+ eventLoop (XConf d r w fs conf) vars sig
-- | Splits the template in its parts
splitTemplate :: Config -> [String]