diff options
author | Eric Mrak <mail@ericmrak.info> | 2014-03-15 14:29:30 -0700 |
---|---|---|
committer | Eric Mrak <mail@ericmrak.info> | 2014-03-15 14:29:30 -0700 |
commit | b1c1b938123b585ccdb66c69e1e7a2903a8e97ad (patch) | |
tree | 8c6eafbd15829df3e527509a6737ffb59c5b24c3 /src/Plugins/Monitors/Cpu.hs | |
parent | 48167e6f50f61453a269b321c8d3c8dad7a347b4 (diff) | |
download | xmobar-b1c1b938123b585ccdb66c69e1e7a2903a8e97ad.tar.gz xmobar-b1c1b938123b585ccdb66c69e1e7a2903a8e97ad.tar.bz2 |
showVerticalBar now takes the same arguments as showPercentBar
Diffstat (limited to 'src/Plugins/Monitors/Cpu.hs')
-rw-r--r-- | src/Plugins/Monitors/Cpu.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Plugins/Monitors/Cpu.hs b/src/Plugins/Monitors/Cpu.hs index 7116f5e..6e83c67 100644 --- a/src/Plugins/Monitors/Cpu.hs +++ b/src/Plugins/Monitors/Cpu.hs @@ -47,7 +47,7 @@ formatCpu [] = return $ replicate 8 "" formatCpu xs = do let t = sum $ take 3 xs b <- showPercentBar (100 * t) t - v <- showVerticalBar (100 * t) + v <- showVerticalBar (100 * t) t ps <- showPercentsWithColors (t:xs) return (b:v:ps) |