diff options
-rw-r--r-- | Plugins/Monitors/Disk.hs | 2 | ||||
-rw-r--r-- | README | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/Plugins/Monitors/Disk.hs b/Plugins/Monitors/Disk.hs index 9a86b46..6b825d2 100644 --- a/Plugins/Monitors/Disk.hs +++ b/Plugins/Monitors/Disk.hs @@ -80,7 +80,7 @@ speedToStr :: Int -> Float -> String speedToStr n x = let units = ["B", "K", "M", "T"] toI = round :: Float -> Integer - s y j = y ++ units !! j ++ "/s" + s y j = y ++ units !! j in if n > 2 || x < 103 then s (show $ toI x) n @@ -348,6 +348,16 @@ Monitors have default aliases. `left` - Default template: `Batt: <left>` +`Disk Disks Args RefreshRate` + +- aliases to `disk` +- Disks: list of pairs of the form (device or mount point, template), + where the template can contain <total>, <read>, <write> for total, + read and write speed, respectively. Example: + `[("/", "<read> <write>"), ("sdb1", "<total>")]` +- Args: the argument list (see below). `-t`/`--template` is ignored. +- Default template: none (you must specify a template for each file system). + `Thermal Zone Args RefreshRate` - aliases to the Zone: so `Zone "THRM" []` can be used in template as `%THRM%` |