aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-08-06 18:21:13 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-08-06 18:21:13 +0200
commit8d59a01cf663d576a79a0092312756d221725633 (patch)
tree779d3eff32fc9e1d986ef698be8b17495ad3c106
parentd2d244f3aa69ff0ca76022d929c2c71001af0bcd (diff)
downloadvicious-legacy-1.0.8.tar.xz
Next release, tag 1.0.8.v1.0.8
-rw-r--r--CHANGES18
-rw-r--r--README3
-rw-r--r--init.lua1
3 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 10e0e99..f164081 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,21 @@
+commit d2d244f3aa69ff0ca76022d929c2c71001af0bcd
+Author: Adrian C. (anrxc) <anrxc@sysphere.org>
+Date: Thu Aug 6 18:18:45 2009 +0200
+
+ CPU Information widget included.
+
+ Widget returns speed and cache information for all available
+ CPUs/cores. It stores cpu speed in mhz and ghz in a table as well as
+ cpu cache in kb and mb. Values are retrieved using the CPU ID, i.e. we
+ would retrieve speed in ghz for CPU or core 1 with this format string:
+ ${1 ghz}.
+
+commit cbd9a53fbc5c6978352fd921a8d652f36fd6adf3
+Author: Adrian C. (anrxc) <anrxc@sysphere.org>
+Date: Thu Aug 6 02:41:46 2009 +0200
+
+ Next release, tag 1.0.7.
+
commit 013dd08225ed70010ef983172873766aa9a5d9fb
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
Date: Thu Aug 6 02:26:23 2009 +0200
diff --git a/README b/README
index 6f6aa92..111e104 100644
--- a/README
+++ b/README
@@ -81,6 +81,9 @@ string.
vicious.widgets.cpu
- provides CPU usage for all available CPUs/cores
+vicious.widgets.cpuinf
+ - provides speed and cache information for all available CPUs/cores
+
vicious.widgets.cpufreq
- provides freq, voltage and governor info for a requested CPU
- takes the CPU ID as an argument, i.e. "cpu0"
diff --git a/init.lua b/init.lua
index 8cfaf9c..cd41a39 100644
--- a/init.lua
+++ b/init.lua
@@ -36,6 +36,7 @@ local capi = {
-- {{{ Configure widgets
require("vicious.cpu")
+require("vicious.cpuinf")
require("vicious.cpufreq")
require("vicious.thermal")
require("vicious.load")