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 Unless otherwise expressly noted, `function` returns a `wibox.widget.textbox`.
5 This is said because, for some widgets, `function` returns a table to be used for notification and update purposes.
7 Every widget may take either a table or a list of variables as argument.
9 If it takes a table, you have to define a function variable called `settings` in it, in order to make your customizations.
11 To markup the textbox, call `widget:set_markup(...)` within `settings`.
13 You can feed `set_markup` with predefined arguments, see the sections for all the details.
15 `widget` is a textbox, so you can also threat it like any other `wibox.widget.textbox`.
17 Here follows an example:
19 mycpu = lain.widgets.cpu({
22 widget:set_markup("Cpu " .. usage)
28 - [alsa](https://github.com/copycat-killer/lain/wiki/alsa)
29 - [alsabar](https://github.com/copycat-killer/lain/wiki/alsabar)
30 - [bat](https://github.com/copycat-killer/lain/wiki/bat)
31 - [borderbox](https://github.com/copycat-killer/lain/wiki/borderbox)
32 - [calendar](https://github.com/copycat-killer/lain/wiki/calendar)
33 - [cpu](https://github.com/copycat-killer/lain/wiki/cpu)
34 - [fs](https://github.com/copycat-killer/lain/wiki/fs)
35 - [imap](https://github.com/copycat-killer/lain/wiki/imap)
36 - [maildir](https://github.com/copycat-killer/lain/wiki/maildir)
37 - [mem](https://github.com/copycat-killer/lain/wiki/mem)
38 - [mpd](https://github.com/copycat-killer/lain/wiki/mpd)
39 - [net](https://github.com/copycat-killer/lain/wiki/net)
40 - [sysload](https://github.com/copycat-killer/lain/wiki/sysload)
41 - [temp](https://github.com/copycat-killer/lain/wiki/temp)
42 - [yawn](https://github.com/copycat-killer/lain/wiki/yawn)