aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFiles
2012-08-19mdir: add support for maildir whitespacesAdrian C. (anrxc)1
This feature was sent by pofman@free.fr.
2012-08-02README: prefer vicious in global spaceAdrian C. (anrxc)2
We want to expose suspend, activate and force functions to external shell scripts not just the Lua prompt.
2012-06-25uptime: metatable bugfix after lua52 port fixed by Jorg ThalheimAdrian C. (anrxc)1
2012-06-25contrib: document how to enable contributed widgetsAdrian C. (anrxc)2
2012-06-25os: change os.getenv init to allow standalone usage of os widgetAdrian C. (anrxc)1
Test case: lua> foo = require("vicious.widgets.os") lua> print(foo()[1]) /usr/share/lua/5.1/vicious/widgets/os.lua:66: attempt to call field 'getenv' (a nil value)
2012-06-25contrib: initialization bugfix after lua52 portAdrian C. (anrxc)3
The _NAME field was missing in the contrib table. Thanks to Jorg Thalheim for reporting this.
2012-06-18README: update initialization instructionsAdrian C. (anrxc)1
With the Lua 5.2 port we change the way vicious is loaded as a module, so that it remains backwards compatible with Lua 5.1 users. Also added the author of the Lua 5.2 port to the contributors list.
2012-06-18bat: metatable bugfix after lua52 portAdrian C. (anrxc)1
2012-06-18widgets: cleanup behind the last commit 363c03eAdrian C. (anrxc)3
2012-06-18Fixed io.lines() bugArvydas Sidorenko2
In Lua 5.2 io.lines() has to be used to iterate until EOF, otherwise the fd will not be closed and eventually tons of naughty messages will start to pop up saying that no more fd can be opened. Signed-off-by: Arvydas Sidorenko <asido4@gmail.com> Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2012-06-18Ported vicious.contrib to lua 5.2Arvydas Sidorenko13
Signed-off-by: Arvydas Sidorenko <asido4@gmail.com> Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2012-06-18Ported vicious.widgets module to lua 5.2Arvydas Sidorenko25
Signed-off-by: Arvydas Sidorenko <asido4@gmail.com> Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2012-06-18Ported vicious module to lua 5.2Arvydas Sidorenko2
Signed-off-by: Arvydas Sidorenko <asido4@gmail.com> Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2012-05-20cpufreq: skip redudant freq variable checkAdrian C. (anrxc)1
2012-05-19cpufreq: rework new exception handlersAdrian C. (anrxc)1
Now that we are so nice to provide default frequency values check if frequency exists before calculating voltage, not to screw up *those* default values. Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2012-05-19cpufreq: handle not existing frequency/governerjinleileiking1
In some cases not all cpu informations will be provided. (ex. in virtual machines) Therefore default to "N/A". Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2012-05-09pkg: update 'Arch S' substitution linesAdrian C. (anrxc)1
It would appear pacman v4 now prints only one line before the package list.
2012-04-01Next release, tag 2.0.4v2.0.4Adrian C. (anrxc)1
2012-03-31README: update thermal documentationAdrian C. (anrxc)1
Thermal now accepts an optional third argument when warg is a table.
2012-03-31thermal: change coretemp default, allow file as widget argumentAdrian C. (anrxc)1
Since Linux 3.0 most if not all people have temp1_input file missing, so default to temp2_input. But also allow an optional third argument to change to yet another file to avoid this kind of problem in the future.
2012-03-04division by zero, if battery is full chargedJörg Thalheim1
If the battery state change from charging to full, power_now is reseted to zero for a little time. This cause division by zero, which was visible as a very big negative number because of the behaviour of string.format. Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2012-02-05hddtemp: fix curl hang in version 7.24.0Adrian C. (anrxc)1
2012-01-20README: add format function example for overriding symbolsAdrian C. (anrxc)1
2012-01-20cpufreq: differentiate between ondemand and conservativeSébastien Luttringer1
In cpufreq widget, governor char is the same for ondemand and conservative which makes it impossible to overload symbols to different values for these two governors in a format function. Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2011-12-10README: update wtype argument explanationAdrian C. (anrxc)1
Many users miss the fact they can register their functions as widget types. Documentation for wtype being incomplete wasn't helping.
2011-11-20bat: fix time calculation, bug introduced in 350e924Adrian C. (anrxc)1
2011-11-19thermal: remove unnecessary readJ. Thalheim1
2011-11-19bat: another workaround for broken ACPI implementationsAdrian C. (anrxc)1
2011-09-24[cpu] fix division by zeroJoerg T. (Mic92)1
In rare cases diff_total seems to become 0.
2011-09-03net: sanitize time computation to avoid division by zeroAdrian C. (anrxc)1
2011-09-02[pulse] round volume to integerJoerg T. (Mic92)1
2011-08-18vicious: cleanup tabs and bad intendationAdrian C. (anrxc)2
2011-08-18[net] calculate time in a more clean wayJoerg T. (Mic92)1
2011-08-18Allocate reg table with all values in one shotJoerg T. (Mic92)1
2011-08-07README: provide multigraph usage exampleAdrian C. (anrxc)1
2011-07-12bat: better fix for missing rate in 31d7b2fAdrian C. (anrxc)1
Thanks to Ikke for debugging this.
2011-06-30vicious: document mem.bcuseAdrian C. (anrxc)1
2011-06-30mem: provide mem.bcuse for GabrielAdrian C. (anrxc)1
2011-05-10Next release, tag 2.0.3v2.0.3Adrian C. (anrxc)2
Thanks to Jörg Thalheim and his work on improving Vicious, we can make this tag.
2011-05-10vicious: load widget modules only when neededJoerg T. (Mic92)4
There's no more need to edit init files and manually disable widgets. Signed-off-by: Joerg T. (Mic92) <jthalheim@gmail.com> Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2011-04-25mpd: allow named keys or positional argumentsPerry Hargrave1
Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2011-03-29dio: import string.match()Adrian C. (anrxc)1
2011-03-29dio: provide stats for all devices, rewritten by JoergAdrian C. (anrxc)6
Old dio.lua was moved to contrib. New one is used like CPU widget is, request the device or parition in the format argument, {sda read_mb} as an example. New widget doesn't provide scheduler information, but I don't know anyone who used that. If you think this is wrong let me know.
2011-03-17cpu: another 10 percent optimization from JoergAdrian C. (anrxc)1
2011-03-15cpu: calculation and optimization fixes by JoergAdrian C. (anrxc)2
2011-03-09gmail: fixed misleading commentAdrian C. (anrxc)1
2011-02-21bat: fixed "no such device" for current and powerAdrian C. (anrxc)1
2011-02-15helpers: properly handle magic charactersAdrian C. (anrxc)2
2011-02-15bat: added power_now supportAdrian C. (anrxc)1
Looks like current_now will eventually be deprecated. Thanks to Conrad Calmez for finding this bug report: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=532000
2011-01-13contrib: added a README with pulse.lua documentedAdrian C. (anrxc)2