diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-08-21 21:21:02 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-08-21 21:21:02 +0200 |
commit | d17958115fbb80d5baf58830f33390cd21acedac (patch) | |
tree | cfb558267a25184fb321b0b79dedc260dead012c /src/Plugins/Monitors | |
parent | be97b76ef677a33aea1b688aeba8453c8db6306c (diff) | |
download | xmobar-d17958115fbb80d5baf58830f33390cd21acedac.tar.gz xmobar-d17958115fbb80d5baf58830f33390cd21acedac.tar.bz2 |
Report iowait in Cpu monitor (fixes #55)
Diffstat (limited to 'src/Plugins/Monitors')
-rw-r--r-- | src/Plugins/Monitors/Cpu.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Plugins/Monitors/Cpu.hs b/src/Plugins/Monitors/Cpu.hs index 919f7a4..6627f53 100644 --- a/src/Plugins/Monitors/Cpu.hs +++ b/src/Plugins/Monitors/Cpu.hs @@ -22,7 +22,7 @@ import Data.IORef (IORef, newIORef, readIORef, writeIORef) cpuConfig :: IO MConfig cpuConfig = mkMConfig "Cpu: <total>%" - ["bar","total","user","nice","system","idle"] + ["bar","total","user","nice","system","idle","iowait"] type CpuDataRef = IORef [Float] @@ -45,7 +45,7 @@ parseCpu cref = formatCpu :: [Float] -> Monitor [String] formatCpu [] = return $ replicate 6 "" formatCpu xs = do - let t = foldr (+) 0 $ take 3 xs + let t = sum $ take 3 xs b <- showPercentBar (100 * t) t ps <- showPercentsWithColors (t:xs) return (b:ps) |