summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2018-11-15 23:09:59 +0000
committerjao <jao@gnu.org>2018-11-15 23:09:59 +0000
commit1976f9bf90ecef8da2fa3a738b54b7d74587c288 (patch)
tree3c20b24bbd146b9e62431a3b2cf569b50edadbec
parent5383407eee9e3677c61cd72066ffc42481164825 (diff)
downloadxmobar-1976f9bf90ecef8da2fa3a738b54b7d74587c288.tar.gz
xmobar-1976f9bf90ecef8da2fa3a738b54b7d74587c288.tar.bz2
Typo in config parser for wmclass (closes #368)
-rw-r--r--src/Parsers.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Parsers.hs b/src/Parsers.hs
index bb5c2ea..966e1ee 100644
--- a/src/Parsers.hs
+++ b/src/Parsers.hs
@@ -234,7 +234,7 @@ parseConfig = runParser parseConf fields "Config" . stripComments
pFont = strField font "font"
pFontList = strListField additionalFonts "additionalFonts"
- pWmClass = strField wmClass "wmclass"
+ pWmClass = strField wmClass "wmClass"
pWmName = strField wmName "windowName"
pBgColor = strField bgColor "bgColor"
pFgColor = strField fgColor "fgColor"