diff options
author | Dmitry Malikov <color404051h@gmail.com> | 2013-01-20 02:01:10 +0400 |
---|---|---|
committer | Dmitry Malikov <color404051h@gmail.com> | 2013-01-20 02:01:10 +0400 |
commit | de224f0ead3c76d6dca4c72fd6c4def15ca858bc (patch) | |
tree | ce0976ccd0f2c54e9804e57505471ccccdde8b3c /src/Config.hs | |
parent | 8498b6e21054b424b4ded7bd01b02a0c31eb4209 (diff) | |
download | xmobar-de224f0ead3c76d6dca4c72fd6c4def15ca858bc.tar.gz xmobar-de224f0ead3c76d6dca4c72fd6c4def15ca858bc.tar.bz2 |
New XPositions: TopP and BottomP
Diffstat (limited to 'src/Config.hs')
-rw-r--r-- | src/Config.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Config.hs b/src/Config.hs index 622c79c..6ab3f8d 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -23,6 +23,7 @@ module Config , runnableTypes ) where + import Commands import {-# SOURCE #-} Runnable import Plugins.Monitors @@ -73,7 +74,9 @@ data Config = data XPosition = Top | TopW Align Int | TopSize Align Int Int + | TopP Int Int | Bottom + | BottomP Int Int | BottomW Align Int | BottomSize Align Int Int | Static {xpos, ypos, width, height :: Int} |