diff options
author | Alexander Polakov <plhk@sdf.org> | 2013-02-03 19:41:26 +0400 |
---|---|---|
committer | Alexander Polakov <plhk@sdf.org> | 2013-02-03 19:41:26 +0400 |
commit | 43c1dd26c41fcc8400a40cc434cb0851119ea76d (patch) | |
tree | 80053db0d470041e64add213e4f58793f41073c1 /src/Parsers.hs | |
parent | a27d4b833b9492dc17a785709b33096a8f116dc0 (diff) | |
download | xmobar-43c1dd26c41fcc8400a40cc434cb0851119ea76d.tar.gz xmobar-43c1dd26c41fcc8400a40cc434cb0851119ea76d.tar.bz2 |
Fixes for previous
Diffstat (limited to 'src/Parsers.hs')
-rw-r--r-- | src/Parsers.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Parsers.hs b/src/Parsers.hs index 4703733..9872a63 100644 --- a/src/Parsers.hs +++ b/src/Parsers.hs @@ -21,7 +21,6 @@ module Parsers ) where import Config -import Types import Runnable import Commands @@ -29,6 +28,8 @@ import qualified Data.Map as Map import Text.ParserCombinators.Parsec import Text.ParserCombinators.Parsec.Perm +data Widget = Icon String | Text String + type ColorString = String -- | Runs the string parser |