diff options
Diffstat (limited to 'src/Xmobar/Config')
| -rw-r--r-- | src/Xmobar/Config/Parse.hs | 5 | ||||
| -rw-r--r-- | src/Xmobar/Config/Types.hs | 1 | 
2 files changed, 4 insertions, 2 deletions
| diff --git a/src/Xmobar/Config/Parse.hs b/src/Xmobar/Config/Parse.hs index 1a57ffa..00ce99c 100644 --- a/src/Xmobar/Config/Parse.hs +++ b/src/Xmobar/Config/Parse.hs @@ -67,7 +67,7 @@ parseConfig defaultConfig =                <|?> pAllDesktops <|?> pOverrideRedirect <|?> pPickBroadest                <|?> pLowerOnStart <|?> pPersistent <|?> pIconRoot                <|?> pCommands <|?> pSepChar <|?> pAlignSep <|?> pTemplate - +              <|?> pVerbose        fields    = [ "font", "additionalFonts","bgColor", "fgColor"                    , "wmClass", "wmName", "sepChar" @@ -75,7 +75,7 @@ parseConfig defaultConfig =                    , "position" , "textOffset", "textOffsets", "iconOffset"                    , "allDesktops", "overrideRedirect", "pickBroadest"                    , "hideOnStart", "lowerOnStart", "persistent", "iconRoot" -                  , "alpha", "commands" +                  , "alpha", "commands", "verbose"                    ]        pFont = strField font "font" @@ -103,6 +103,7 @@ parseConfig defaultConfig =        pPickBroadest = readField pickBroadest "pickBroadest"        pIconRoot = readField iconRoot "iconRoot"        pAlpha = readField alpha "alpha" +      pVerbose = readField verbose "verbose"        pCommands = field commands "commands" readCommands diff --git a/src/Xmobar/Config/Types.hs b/src/Xmobar/Config/Types.hs index ab85d5b..d59c993 100644 --- a/src/Xmobar/Config/Types.hs +++ b/src/Xmobar/Config/Types.hs @@ -64,6 +64,7 @@ data Config =             , alignSep :: String     -- ^ Separators for left, center and                                      --   right text alignment             , template :: String     -- ^ The output template +           , verbose :: Bool        -- ^ Emit additional debug messages             } deriving (Read)  data XPosition = Top | 
