summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow (venus) <paul@buetow.org>2012-01-21 15:49:33 +0100
committerPaul Buetow (venus) <paul@buetow.org>2012-01-21 15:49:33 +0100
commit3f620b8cf2dc6e6cb349e493e6efecef309ae033 (patch)
tree7a2bb8770b2dfe668f505c51d426fb626ded2469
parentb6f4e7d8c2c6f8c3c8a37fde7e96490db073f324 (diff)
backup
-rw-r--r--CHANGELOG6
-rw-r--r--README4
-rwxr-xr-xloadbars4
3 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 19a9163..5f94fab 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,8 @@
-* Bugfix: Max system+user pk is never >100%
+* Also show stats for idle, iowait, irq, softirq and steal cpu time
+* Some parameters have been renamed (see --help)
+* Introduced extended mode (use --extended 1 at startup or 'e' hotkey)
+* Modified the bar colors a little bit (see --help)
+* Some Bugfixes
Tue Dec 27 12:28:40 CET 2011
* Released v0.3.1
diff --git a/README b/README
index 31c278b..5ee5b8d 100644
--- a/README
+++ b/README
@@ -41,8 +41,8 @@ Explanations:
Color: Yellow, dark yellow if al>50%, orange if al>50%
sy = System cpu sage in %
Blue, purple if >30%
- al = 100% minus id
+ to = Total CPU usage, which is (100% - id)
pk = Max al peak of last avg. samples (extended)
avg = System load average; desc. order: 1, 5 and 15 min. avg.
1px horizontal line: Maximum sy+us+io of last 'avg' samples (extended)
-(extended) means: text display only if extended mode is turned on
+ Extended means: text display only if extended mode is turned on
diff --git a/loadbars b/loadbars
index 8c845c7..323faac 100755
--- a/loadbars
+++ b/loadbars
@@ -519,7 +519,7 @@ sub main_loop ($@) {
$app->print($x, $y+=$space, sprintf '%02d%s', norm $cpuaverage->{iowait}, 'io');
$app->print($x, $y+=$space, sprintf '%02d%s', norm $cpuaverage->{user}, 'us');
$app->print($x, $y+=$space, sprintf '%02d%s', norm $cpuaverage->{system}, 'sy');
- $app->print($x, $y+=$space, sprintf '%02d%s', norm $all, 'al');
+ $app->print($x, $y+=$space, sprintf '%02d%s', norm $all, 'to');
$app->print($x, $y+=$space, sprintf '%02d%s', norm $max_all, 'pk') if $C{extended};
@@ -614,7 +614,7 @@ Explanations:
Color: Yellow, dark yellow if al>50%, orange if al>50%
sy = System cpu sage in %
Blue, purple if >30%
- al = 100% minus id
+ to = Total CPU usage, which is (100% - id)
pk = Max al peak of last avg. samples (extended)
avg = System load average; desc. order: 1, 5 and 15 min. avg.
1px horizontal line: Maximum sy+us+io of last 'avg' samples (extended)