diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-09 01:15:41 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-09 01:15:41 +0100 |
commit | a708d0defae7db40f01e294be44829e7a2f30be8 (patch) | |
tree | a30fea9904a25b7d3eaf77f5a41a2e4ef75dda74 /Plugins/Monitors/Net.hs | |
parent | f7cbb14d9ee40d07abcde45868507f858e072fdd (diff) | |
download | xmobar-a708d0defae7db40f01e294be44829e7a2f30be8.tar.gz xmobar-a708d0defae7db40f01e294be44829e7a2f30be8.tar.bz2 |
Network monitor: no units in reported rates
Since they're always KB/s, we left them for the template
Diffstat (limited to 'Plugins/Monitors/Net.hs')
-rw-r--r-- | Plugins/Monitors/Net.hs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Plugins/Monitors/Net.hs b/Plugins/Monitors/Net.hs index d08f96e..c232b42 100644 --- a/Plugins/Monitors/Net.hs +++ b/Plugins/Monitors/Net.hs @@ -28,7 +28,7 @@ interval = 500000 netConfig :: IO MConfig netConfig = mkMConfig - "<dev>: <rx>|<tx>" -- template + "<dev>: <rx>KB|<tx>KB" -- template ["dev", "rx", "tx", "rxbar", "txbar"] -- available replacements -- Given a list of indexes, take the indexed elements from a list. @@ -64,10 +64,9 @@ netParser = formatNet :: Float -> Monitor (String, String) formatNet d = do - b <- showLogBar 0.8 d - x <- showWithColors f d + b <- showLogBar 0.6 d + x <- showWithColors (showDigits 1) d return (x, b) - where f s = showDigits 1 s ++ "Kb" printNet :: NetDev -> Monitor String printNet nd = |