From 9b46234bddbecbcdb9f19aef7f441b15415db07d Mon Sep 17 00:00:00 2001 From: Eric Mrak Date: Fri, 14 Mar 2014 00:43:38 -0700 Subject: Memory monitor has freevbar and usedvbar --- src/Plugins/Monitors/Mem.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Plugins/Monitors/Mem.hs b/src/Plugins/Monitors/Mem.hs index d7b6754..e483317 100644 --- a/src/Plugins/Monitors/Mem.hs +++ b/src/Plugins/Monitors/Mem.hs @@ -20,7 +20,7 @@ import qualified Data.Map as M memConfig :: IO MConfig memConfig = mkMConfig "Mem: % (M)" -- template - ["usedbar", "freebar", "usedratio", "freeratio", "total", + ["usedbar", "usedvbar", "freebar", "freevbar", "usedratio", "freeratio", "total", "free", "buffer", "cache", "rest", "used"] -- available replacements fileMEM :: IO String @@ -49,11 +49,13 @@ formatMem (r:fr:xs) = do let f = showDigits 0 rr = 100 * r ub <- showPercentBar rr r + uvb <- showVerticalBar rr fb <- showPercentBar (100 - rr) (1 - r) + fvb <- showVerticalBar (100 - rr) rs <- showPercentWithColors r fs <- showPercentWithColors fr s <- mapM (showWithColors f) xs - return (ub:fb:rs:fs:s) + return (ub:uvb:fb:fvb:rs:fs:s) formatMem _ = replicate 10 `fmap` getConfigValue naString runMem :: [String] -> Monitor String -- cgit v1.2.3