All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 Every widget is output by a `function`.
3 For some widgets, `function` returns a `wibox.widget.textbox`, for others a table to be used for notification and update purposes.
5 Every widget may take either a table or a list of variables as argument.
7 If it takes a table, you have to define a function variable called `settings` in it, in order to make your customizations.
9 To markup the textbox, call `widget:set_markup(...)` within `settings`.
11 You can feed `set_markup` with predefined arguments, see the sections for all the details.
13 `widget` is a textbox, so you can threat it like any other `wibox.widget.textbox`.
15 Here follows an example:
17 mycpu = lain.widgets.cpu({
20 widget:set_markup("Cpu " .. usage)
26 - [alsa](https://github.com/copycat-killer/lain/wiki/alsa)
27 - [alsabar](https://github.com/copycat-killer/lain/wiki/alsabar)
28 - [bat](https://github.com/copycat-killer/lain/wiki/bat)
29 - [borderbox](https://github.com/copycat-killer/lain/wiki/borderbox)
30 - [calendar](https://github.com/copycat-killer/lain/wiki/calendar)
31 - [cpu](https://github.com/copycat-killer/lain/wiki/cpu)
32 - [fs](https://github.com/copycat-killer/lain/wiki/fs)
33 - [imap](https://github.com/copycat-killer/lain/wiki/imap)
34 - [maildir](https://github.com/copycat-killer/lain/wiki/maildir)
35 - [mem](https://github.com/copycat-killer/lain/wiki/mem)
36 - [mpd](https://github.com/copycat-killer/lain/wiki/mpd)
37 - [net](https://github.com/copycat-killer/lain/wiki/net)
38 - [sysload](https://github.com/copycat-killer/lain/wiki/sysload)
39 - [temp](https://github.com/copycat-killer/lain/wiki/temp)
40 - [yawn](https://github.com/copycat-killer/lain/wiki/yawn)