aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFiles
2010-11-03README: added missing register() documentationAdrian C. (anrxc)1
2010-10-19wifi: provide link quality in percentAdrian C. (anrxc)1
2010-10-04date: turn time widget argument into an offsetAdrian C. (anrxc)1
The os.time() call should not be passed as an argument it self, because of a chance it will be stored internally and so we would always get the same time. Instead we can pass time offsets in seconds, i.e. to go 6 hours forward we can use the widget argument 21600, to go 6 hours back we use -21600 instead.
2010-10-03date: accept time as a widget argumentAdrian C. (anrxc)1
Format custom time for example to calculate time zone differences, New York time relative to me would be widget argument: os.time()-21600
2010-09-13README: update contrib informationAdrian C. (anrxc)1
2010-08-29pkg: description updatedAdrian C. (anrxc)1
2010-08-22mpd: added some optional stats, commentedAdrian C. (anrxc)1
2010-07-19net: add operational state supportAdrian C. (anrxc)1
2010-07-10dio: add partition supportAdrian C. (anrxc)1
2010-05-17README: cut on the security crapAdrian C. (anrxc)1
2010-03-26raid: import raid state widget type by HagenAdrian C. (anrxc)1
This widget type returns 1st value as the number of assigned, and 2nd as active, devices in the array provided as the widget argument.
2010-03-15os: merge with entropy widget typeAdrian C. (anrxc)1
Operating System widget type now returns two additional values, 5th as available system entropy and 6th as available entropy in percent.
2010-03-14README: updated link to contribAdrian C. (anrxc)1
2010-03-14API: missing warg should not break awesomeAdrian C. (anrxc)1
2010-03-13init: missing widget type should not break awesomeAdrian C. (anrxc)1
2010-03-13README: added a list of needed utilitiesAdrian C. (anrxc)1
2010-03-12README: add contributors to Authors sectionAdrian C. (anrxc)1
If you would like to be removed from the list let me know.
2010-03-12README: added contrib and vicious-fbsd informationAdrian C. (anrxc)1
Contrib should be better known because of the extra widgets it contains. While the vicious-fbsd branch by Richard Kolkovich was already added to the vicious home page and needs more exposure.
2010-03-12README: standardize quotesAdrian C. (anrxc)1
2010-03-12mpd: rewritten and now uses curl not mpcAdrian C. (anrxc)1
Widget type uses curl now, like all other types accessing network resources (until, if ever, we switch to luasocket). Where previously only the currently playing song was returned now you can access these keys: {volume}, {state}, {Artist}, {Title}, {Album}, {Genre}. You can provide an optional table argument to change password, host or port.
2010-03-12dio: add I/O scheduler supportAdrian C. (anrxc)1
I/O scheduler information is stored in the key: {sched}
2010-03-12os: import operating system information widgetAdrian C. (anrxc)1
This widget type returns 1st value as the operating system in use, 2nd as the release version, 3rd as your username and 4th the hostname.
2010-03-10gmail: switch to ~/.netrc for login storageAdrian C. (anrxc)1
Login information is now kept in the ~/.netrc file, which should be readable only by the owner. This should solve futher problems with unquoted characters addressed in the last commit. The format of the ~/.netrc file is as follows (also documented in the README): machine mail.google.com login user password pass
2010-03-10fs: include available space in percent, requested by JonAdrian C. (anrxc)1
Format string and key example: "${/home avail_p}"
2010-03-07init: do not use keyword type for user dataAdrian C. (anrxc)1
2010-03-07API: added force() function to force update widgetsAdrian C. (anrxc)1
New function introduced vicious.force({ widget, }) - widget argument is a table with one or more widgets that will be updated.
2010-03-07API: regregister() and update() are not exposedAdrian C. (anrxc)1
2010-03-07README: link to the "Widgets in awesome" documentAdrian C. (anrxc)1
2010-03-07API: function enable_caching() is now cache()Adrian C. (anrxc)1
2010-03-06volume: added real mute supportAdrian C. (anrxc)1
Widge type returns 1st value as the volume level and 2nd as the mute state of the requested channel represented as a symbol.
2010-03-02mdir: fix module descriptionAdrian C. (anrxc)1
2010-02-20README: added the Security sectionAdrian C. (anrxc)1
2010-02-20helpers: uformat helper replaces formatting done by widgetsAdrian C. (anrxc)1
2010-02-18volume: suggest appending card ID or other optionsAdrian C. (anrxc)1
Widget type takes the mixer control as an argument, i.e. "PCM" but can take optional amixer options, i.e. "PCM -c 1".
2010-02-10thermal: added support for procfs and coretempAdrian C. (anrxc)1
Widget type now takes the thermal zone as an argument, or a table with 1st field as thermal zone and 2nd field as data source. Available data sources are: "proc" (procfs ACPI), "sys" (sysfs like before) and "core" (sysfs coretemp). When only the thermal zone is provided widget defaults to "sys".
2010-02-04README: added textbox fixed width exampleAdrian C. (anrxc)1
2010-02-04pkg: added apt and yum to pkg managers tableAdrian C. (anrxc)1
This widget type now takes the distribution name as an argument; Arch, Arch S, Debian and Fedora examples are now in the package manager table. Feedback from yum users is needed.
2009-12-15dio: return separated read and write statisticsAdrian C. (anrxc)1
This changes keys that are returned, previously only total I/O was available in: {raw}, {kb} and {mb}. Keys returned now are (s=raw): {total_s}, {total_kb}, {total_mb}, {read_s}, {read_kb}, {read_mb}, {write_s},{write_kb} and {write_mb}.
2009-12-07README: minor changes in Format functionsAdrian C. (anrxc)1
2009-11-18fs: switched to 1K blocks and new keysAdrian C. (anrxc)1
Previous version could return 1 on one update and 900 on the next (1st being GB, 2nd MB) a user appending "GB" to the value suddenly has a 900GB disk available. Returned keys are now: size_mb, size_gb, used_mb, used_gb, avail_mb, avail_gb, and percentage is now: used_p.
2009-11-12mdir: support for multiple directoriesHiltjo Posthuma1
Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
2009-11-11README: document new truncate and scroll usageAdrian C. (anrxc)1
2009-11-11entropy: widget rewritten, poolsize no longer an argumentAdrian C. (anrxc)1
2009-11-11uptime: merged with load widget typeAdrian C. (anrxc)1
Total uptime and seconds are no longer returned. Returns are now: days, hours, minutes, load avg 1, load avg 5 and load avg 15.
2009-11-11bat: widget rewritten for sysfsAdrian C. (anrxc)1
This also means that it replaces batsys, and we are left with only one, universal, battery widget.
2009-11-11thermal: widget rewritten for sysfsAdrian C. (anrxc)1
Default path is set to /sys/class/thermal but at least it's easier to switch to /sys/class/hwmon (i.e. coretemp) now without much code modification. Note; zone IDs are probably different than those in /proc/acpi/thermal_zone
2009-11-10batat: widget type removed, now available in the contrib branchAdrian C. (anrxc)1
This was one of the first widgets on top of Wicked, now that we have both procfs and sysfs covered there is no need to keep it in master.
2009-11-10batsys: import battery widget that uses sysfsAdrian C. (anrxc)1
Initial widget code was sent by Benedikt Sauer. After some cleanup it is ready to go into master. It uses data exposed trough /sys and it is used in the exact same way as the bat widget (and /proc). This widget will replace batat and acpitool, it will be moved to contrib and retired.
2009-10-22README: updated net descriptionAdrian C. (anrxc)1
2009-10-22README: more information in Power sectionAdrian C. (anrxc)1