diff options
author | jao <jao@gnu.org> | 2018-11-15 23:09:59 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2018-11-15 23:09:59 +0000 |
commit | 1976f9bf90ecef8da2fa3a738b54b7d74587c288 (patch) | |
tree | 3c20b24bbd146b9e62431a3b2cf569b50edadbec /src/Parsers.hs | |
parent | 5383407eee9e3677c61cd72066ffc42481164825 (diff) | |
download | xmobar-1976f9bf90ecef8da2fa3a738b54b7d74587c288.tar.gz xmobar-1976f9bf90ecef8da2fa3a738b54b7d74587c288.tar.bz2 |
Typo in config parser for wmclass (closes #368)
Diffstat (limited to 'src/Parsers.hs')
-rw-r--r-- | src/Parsers.hs | 2 |
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" |