From cbd9a53fbc5c6978352fd921a8d652f36fd6adf3 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Thu, 6 Aug 2009 02:41:46 +0200 Subject: Next release, tag 1.0.7. --- CHANGES | 26 ++++++++++++++++++++++++++ README | 13 +++++++++++++ init.lua | 1 + 3 files changed, 40 insertions(+) diff --git a/CHANGES b/CHANGES index 4971a9d..10e0e99 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +commit 013dd08225ed70010ef983172873766aa9a5d9fb +Author: Adrian C. (anrxc) +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) +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) +Date: Wed Aug 5 23:08:47 2009 +0200 + + CHANGES file updated before the next push. + commit f14280bf9c60bac3dd024c0967690780ecf13fcf Author: Adrian C. (anrxc) Date: Wed Aug 5 22:53:42 2009 +0200 diff --git a/README b/README index 9a9296b..6f6aa92 100644 --- a/README +++ b/README @@ -113,6 +113,11 @@ vicious.widgets.dio - provides I/O statistics for requested storage devices - 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 - 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} 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 batwidget = widget({ type = 'progressbar', name = 'batwidget' }) -- configure the progressbar and bar properties, then register with: diff --git a/init.lua b/init.lua index 63057c8..8cfaf9c 100644 --- a/init.lua +++ b/init.lua @@ -45,6 +45,7 @@ require("vicious.batat") require("vicious.mem") require("vicious.fs") require("vicious.dio") +require("vicious.hddtemp") require("vicious.net") require("vicious.wifi") require("vicious.mbox") -- cgit v1.2.3