diff options
author | jao <jao@gnu.org> | 2022-03-30 19:22:13 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-03-30 19:22:13 +0100 |
commit | 88230bb0301aebc37c971d235f5a9735d9563f8d (patch) | |
tree | b531024e4146358e16fca71fd8e614c5e5b87874 /doc/plugins.org | |
parent | 60b106ac0db19800667ee54b0d390d80e0873b52 (diff) | |
download | xmobar-88230bb0301aebc37c971d235f5a9735d9563f8d.tar.gz xmobar-88230bb0301aebc37c971d235f5a9735d9563f8d.tar.bz2 |
Load: honour the -d (decimal digits) monitor argument
Diffstat (limited to 'doc/plugins.org')
-rw-r--r-- | doc/plugins.org | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/plugins.org b/doc/plugins.org index cc4169f..8ff75e4 100644 --- a/doc/plugins.org +++ b/doc/plugins.org @@ -676,8 +676,18 @@ - Default template: =Load: <load1>=. - Displays load averages for the last 1, 5 or 15 minutes as - reported by, e.g., ~uptime(1)~. + reported by, e.g., ~uptime(1)~. The displayed values are float, + so that the ~"-d"~ option will control how many decimal digits + are shown (zero by default). + - Example: to have 2 decimal digits displayed, with a low + threshold at 1.0 and a high one at 3, you'd write something + like: + + #+begin_src haskell + Run Load ["-t" , "<load1> <load5> <load15>" + , "-L", "1", "-H", "3", "-d", "2"]) 300 + #+end_src ***** =TopProc Args RefreshRate= |