Next release, tag 1.0.7.
This commit is contained in:
parent
013dd08225
commit
cbd9a53fbc
26
CHANGES
26
CHANGES
|
@ -1,3 +1,29 @@
|
||||||
|
commit 013dd08225ed70010ef983172873766aa9a5d9fb
|
||||||
|
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
|
||||||
|
Date: Thu Aug 6 02:26:23 2009 +0200
|
||||||
|
|
||||||
|
HDD Temperature widget included.
|
||||||
|
|
||||||
|
Widget uses the hddtemp daemon to return the temperatures for all
|
||||||
|
available hard drives. It uses curl and connects to the daemon over
|
||||||
|
telnet.
|
||||||
|
|
||||||
|
commit 515cc0dd6bc24d56e85803f626e60fa70bb73b4e
|
||||||
|
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
|
||||||
|
Date: Thu Aug 6 01:50:50 2009 +0200
|
||||||
|
|
||||||
|
Weather widget switched to curl.
|
||||||
|
|
||||||
|
It is somewhat lighter, faster and simpler than wget. It is as common
|
||||||
|
as wget these days... from GnuPG to Git and Gimp, they all depend on
|
||||||
|
it, and we all have it installed.
|
||||||
|
|
||||||
|
commit 477b8d284ad3ab84f4990cbba4570910e3ffa522
|
||||||
|
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
|
||||||
|
Date: Wed Aug 5 23:08:47 2009 +0200
|
||||||
|
|
||||||
|
CHANGES file updated before the next push.
|
||||||
|
|
||||||
commit f14280bf9c60bac3dd024c0967690780ecf13fcf
|
commit f14280bf9c60bac3dd024c0967690780ecf13fcf
|
||||||
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
|
Author: Adrian C. (anrxc) <anrxc@sysphere.org>
|
||||||
Date: Wed Aug 5 22:53:42 2009 +0200
|
Date: Wed Aug 5 22:53:42 2009 +0200
|
||||||
|
|
13
README
13
README
|
@ -113,6 +113,11 @@ vicious.widgets.dio
|
||||||
- provides I/O statistics for requested storage devices
|
- provides I/O statistics for requested storage devices
|
||||||
- takes the disk as an argument, i.e. "/dev/hda"
|
- takes the disk as an argument, i.e. "/dev/hda"
|
||||||
|
|
||||||
|
vicious.widgets.hddtemp
|
||||||
|
- provides hard drive temperatures using the hddtemp daemon
|
||||||
|
- takes the hddtemp listening port as an argument, or fallbacks to
|
||||||
|
default port 7634
|
||||||
|
|
||||||
vicious.widgets.net
|
vicious.widgets.net
|
||||||
- provides usage statistics for all network interfaces
|
- provides usage statistics for all network interfaces
|
||||||
|
|
||||||
|
@ -222,6 +227,14 @@ File system widget
|
||||||
- executed every 120 seconds, requests the value of the ${home usep}
|
- executed every 120 seconds, requests the value of the ${home usep}
|
||||||
key and feeds the "fswidget" progressbar
|
key and feeds the "fswidget" progressbar
|
||||||
|
|
||||||
|
HDD temperature widget
|
||||||
|
hddtempwidget = widget({ type = 'textbox', name = 'hddtempwidget' })
|
||||||
|
vicious.register(hddtempwidget, vicious.widgets.hddtemp, '${/dev/sda}°C', 240)
|
||||||
|
|
||||||
|
- executed every 240 seconds, requests the temperature level of the
|
||||||
|
${/dev/sda} disk/key and appends "°C" to the returned value, does
|
||||||
|
not provide the port argument so it fallbacks to default
|
||||||
|
|
||||||
Battery widget
|
Battery widget
|
||||||
batwidget = widget({ type = 'progressbar', name = 'batwidget' })
|
batwidget = widget({ type = 'progressbar', name = 'batwidget' })
|
||||||
-- configure the progressbar and bar properties, then register with:
|
-- configure the progressbar and bar properties, then register with:
|
||||||
|
|
1
init.lua
1
init.lua
|
@ -45,6 +45,7 @@ require("vicious.batat")
|
||||||
require("vicious.mem")
|
require("vicious.mem")
|
||||||
require("vicious.fs")
|
require("vicious.fs")
|
||||||
require("vicious.dio")
|
require("vicious.dio")
|
||||||
|
require("vicious.hddtemp")
|
||||||
require("vicious.net")
|
require("vicious.net")
|
||||||
require("vicious.wifi")
|
require("vicious.wifi")
|
||||||
require("vicious.mbox")
|
require("vicious.mbox")
|
||||||
|
|
Loading…
Reference in New Issue