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 Attaches a calendar notification to a widget.
3 lain.widgets.calendar:attach(widget)
5 - Left click: switch to previous month.
6 - Right click: switch to next month.
8 Optionally you can call the function with bg and fg colors arguments, both or just one:
10 lain.widgets.calendar:attach(mytextclock, "#FFFFFF", "#000000")
12 lain.widgets.calendar:attach(mytextclock, "#FFFFFF")
14 lain.widgets.calendar:attach(mytextclock, nil, "#000000")
16 default bg and fg colors are `beautiful.bg_normal` and `beautiful.fg_focus`.
18 Notification will show an icon displaying current day, and formatted output
19 from ``cal`` with current day highlighted.
21 Calendar icons are placed in [lain/icons/cal](https://github.com/copycat-killer/lain/tree/master/icons/cal), default set being ``white``.
23 You can add your own set, and tell lain to use it like this:
25 lain.widgets.calendar.icons_dir = lain.widgets.icons_dir .. "cal/myicons"
27 also, you can set notification font size:
29 lain.widgets.calendar.font_size = 14
33 Finally, you can call the notification with a key binding like this:
35 awful.key({ altkey }, "c", function () lain.widgets.calendar:show(7) end),
37 where ``altkey = "Mod1"`` and ``show`` argument is an optional integer, meaning timeout seconds.