From 00d7e261ec864b9cdbdd3fa1cd90e4121d08630d Mon Sep 17 00:00:00 2001 From: Andrea Rossato Date: Sun, 28 Oct 2007 22:47:20 +0100 Subject: Added support for text alignment commands in the output template WARNING: this patch breaks old configuration files. - removed align configuration option - added alignSep configuration option, a 2 character string: the text before the first character will be align to left, the text in between the 2 characters will be centered, and the text after the second character will be align to the right. For instance: with alignSep darcs-hash:20071028214720-d6583-be3839c8989a8075f4b1c94dcbc351b499342370.gz --- Config.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Config.hs') diff --git a/Config.hs b/Config.hs index acc8014..a1da93d 100644 --- a/Config.hs +++ b/Config.hs @@ -36,11 +36,11 @@ data Config = , bgColor :: String -- ^ Backgroud color , fgColor :: String -- ^ Default font color , position :: XPosition -- ^ Top Bottom or Static - , align :: String -- ^ text alignment , commands :: [Runnable] -- ^ For setting the command, the command argujments -- and refresh rate for the programs to run (optional) , sepChar :: String -- ^ The character to be used for indicating -- commands in the output template (default '%') + , alignSep :: String -- ^ Separators for left, center and right text alignment , template :: String -- ^ The output template } deriving (Read) @@ -53,10 +53,10 @@ defaultConfig = , bgColor = "#000000" , fgColor = "#BFBFBF" , position = Top - , align = "left" , commands = [] , sepChar = "%" - , template = "Uptime: %uptime% ** %date%" + , alignSep = "}{" + , template = "Uptime: %uptime% }{ %date%" } -- | This is the list of types that can be hidden inside -- cgit v1.2.3