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