Next release, tag 1.0.8.
This commit is contained in:
parent
d2d244f3aa
commit
8d59a01cf6
18
CHANGES
18
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
|
commit 013dd08225ed70010ef983172873766aa9a5d9fb
|
||||||
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
|
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
|
||||||
Date: Thu Aug 6 02:26:23 2009 +0200
|
Date: Thu Aug 6 02:26:23 2009 +0200
|
||||||
|
|
3
README
3
README
|
@ -81,6 +81,9 @@ string.
|
||||||
vicious.widgets.cpu
|
vicious.widgets.cpu
|
||||||
- provides CPU usage for all available CPUs/cores
|
- provides CPU usage for all available CPUs/cores
|
||||||
|
|
||||||
|
vicious.widgets.cpuinf
|
||||||
|
- provides speed and cache information for all available CPUs/cores
|
||||||
|
|
||||||
vicious.widgets.cpufreq
|
vicious.widgets.cpufreq
|
||||||
- provides freq, voltage and governor info for a requested CPU
|
- provides freq, voltage and governor info for a requested CPU
|
||||||
- takes the CPU ID as an argument, i.e. "cpu0"
|
- takes the CPU ID as an argument, i.e. "cpu0"
|
||||||
|
|
1
init.lua
1
init.lua
|
@ -36,6 +36,7 @@ local capi = {
|
||||||
|
|
||||||
-- {{{ Configure widgets
|
-- {{{ Configure widgets
|
||||||
require("vicious.cpu")
|
require("vicious.cpu")
|
||||||
|
require("vicious.cpuinf")
|
||||||
require("vicious.cpufreq")
|
require("vicious.cpufreq")
|
||||||
require("vicious.thermal")
|
require("vicious.thermal")
|
||||||
require("vicious.load")
|
require("vicious.load")
|
||||||
|
|
Loading…
Reference in New Issue